This action waits for a commit status to succeed, and it also returns the JSON of the commit status. It uses the Github API Get the combined status for a specific reference to fetch the commit statuses and then checks the status of the specified status context
.
jobs:
example_case:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run the action
id: test_action
uses: kyma-project/wait-for-commit-status-action@main
with:
context: "<CONTEXT_NAME>"
commit_ref: "<COMMIT_REF | SHA>"
timeout: <TIME_IN_MILLISECONDS>
check_interval: <TIME_IN_MILLISECONDS>
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
GITHUB_OWNER: "<OWNER>"
GITHUB_REPO: "<REPO>"
- name: Use the results
run: |
echo "${{ steps.test_action.outputs.state }}"
echo "${{ steps.test_action.outputs.json }}"
context
: The context value of the status.commit_ref
: The commit reference. Can be a commit SHA, branch name (heads/BRANCH_NAME
), or tag name (tags/TAG_NAME
).timeout
: The time (Milliseconds) to wait for the status to succeed.check_interval
: The time (in milliseconds) to wait before checking the commit status again.NOTE: The GitHub REST API uses rate limiting, so a small check interval may exhaust the request limit.
GITHUB_TOKEN
: Token to authenticate with Github API, such as${{ secrets.GITHUB_TOKEN }}
.GITHUB_OWNER
: The account owner of the repository. The name is not case sensitive.GITHUB_REPO
: The name of the repository without the .git extension. The name is not case sensitive.
state
: The state value of the retrieved status.json
: The stringified JSON of the retrieved status object.
See CONTRIBUTING.md
See the LICENSE file