Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/actions/report-fork-status/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ inputs:
pr_ref:
description: 'SHA of the fork PR head commit'
required: true
name:
description: 'Status context name (job name)'
required: true

runs:
using: composite
Expand All @@ -20,8 +23,9 @@ runs:
skipped) exit 0 ;;
*) state="failure" ;;
esac
echo "report-fork-status: name/context='${{ inputs.name }}' pr_ref=${{ inputs.pr_ref }} state=$state"
gh api --method POST "repos/${{ github.repository }}/statuses/${{ inputs.pr_ref }}" \
-f state="$state" \
-f context="${{ job.name }}" \
-f context="${{ inputs.name }}" \
-f target_url="${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" \
-f description="${{ job.status }}"
1 change: 1 addition & 0 deletions .github/workflows/alioss-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,4 @@ jobs:
uses: ./.github/actions/report-fork-status
with:
pr_ref: ${{ inputs.pr_ref }}
name: Alioss General Integration Tests
1 change: 1 addition & 0 deletions .github/workflows/azurebs-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,4 @@ jobs:
uses: ./.github/actions/report-fork-status
with:
pr_ref: ${{ inputs.pr_ref }}
name: AzureCloud Environment Integration Tests
1 change: 1 addition & 0 deletions .github/workflows/dav-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,4 @@ jobs:
uses: ./.github/actions/report-fork-status
with:
pr_ref: ${{ inputs.pr_ref }}
name: DAV Integration Tests
2 changes: 2 additions & 0 deletions .github/workflows/gcs-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ jobs:
uses: ./.github/actions/report-fork-status
with:
pr_ref: ${{ inputs.pr_ref }}
name: GCS Integation Fast Tests

gcs-integration-all-tests:
name: GCS Integation All Tests
Expand Down Expand Up @@ -103,3 +104,4 @@ jobs:
uses: ./.github/actions/report-fork-status
with:
pr_ref: ${{ inputs.pr_ref }}
name: GCS Integation All Tests
3 changes: 3 additions & 0 deletions .github/workflows/s3-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ jobs:
uses: ./.github/actions/report-fork-status
with:
pr_ref: ${{ inputs.pr_ref }}
name: AWS S3 US Integration

aws-s3-regional-integration:
name: AWS S3 ${{ matrix.name }} Integration
Expand Down Expand Up @@ -169,6 +170,7 @@ jobs:
uses: ./.github/actions/report-fork-status
with:
pr_ref: ${{ inputs.pr_ref }}
name: AWS S3 ${{ matrix.name }} Integration

s3-compatible-integration:
name: S3 Compatible Integration
Expand Down Expand Up @@ -204,4 +206,5 @@ jobs:
uses: ./.github/actions/report-fork-status
with:
pr_ref: ${{ inputs.pr_ref }}
name: S3 Compatible Integration

Loading