Skip to content

Commit

Permalink
ci: Move set-commit-status custom action to shaka-github-tools repo
Browse files Browse the repository at this point in the history
  • Loading branch information
joeyparrish committed Jun 12, 2024
1 parent d6fcf66 commit 2aacf0e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 65 deletions.
59 changes: 0 additions & 59 deletions .github/workflows/custom-actions/set-commit-status/action.yaml

This file was deleted.

8 changes: 4 additions & 4 deletions .github/workflows/selenium-lab-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ jobs:

- name: Set commit status to pending
if: ${{ inputs.skip_test_status == false }}
uses: ./.github/workflows/custom-actions/set-commit-status
uses: shaka-project/shaka-github-tools/set-commit-status
with:
context: Selenium / Build
job_name: "${{ inputs.job_name_prefix }}Pre-build Player"
Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:
# Will run on success or failure, but not if the workflow is cancelled
# or if we were asked to ignore the test status.
if: ${{ (success() || failure()) && inputs.skip_commit_status == false }}
uses: ./.github/workflows/custom-actions/set-commit-status
uses: shaka-project/shaka-github-tools/set-commit-status
with:
context: Selenium / Build
job_name: "${{ inputs.job_name_prefix }}Pre-build Player"
Expand All @@ -220,7 +220,7 @@ jobs:

- name: Set commit status to pending
if: ${{ inputs.skip_commit_status == false }}
uses: ./.github/workflows/custom-actions/set-commit-status
uses: shaka-project/shaka-github-tools/set-commit-status
with:
context: Selenium / ${{ matrix.browser }}
job_name: "${{ inputs.job_name_prefix }}${{ matrix.browser }}"
Expand Down Expand Up @@ -378,7 +378,7 @@ jobs:
# Will run on success or failure, but not if the workflow is cancelled
# or if we were asked to ignore the test status.
if: ${{ (success() || failure()) && inputs.skip_commit_status == false }}
uses: ./.github/workflows/custom-actions/set-commit-status
uses: shaka-project/shaka-github-tools/set-commit-status
with:
context: Selenium / ${{ matrix.browser }}
job_name: "${{ inputs.job_name_prefix }}${{ matrix.browser }}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-screenshots.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
ref: refs/pull/${{ inputs.pr }}/head

- name: Set commit status to pending
uses: ./.github/workflows/custom-actions/set-commit-status
uses: shaka-project/shaka-github-tools/set-commit-status
with:
context: Update All Screenshots
state: pending
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
fi
- name: Report final status
uses: ./.github/workflows/custom-actions/set-commit-status
uses: shaka-project/shaka-github-tools/set-commit-status
with:
context: Update All Screenshots
state: ${{ steps.compute.outputs.status }}
Expand Down

0 comments on commit 2aacf0e

Please sign in to comment.