Всем привет! #79
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'githubstatusblogpostlink' | |
on: # run on any PRs and main branch changes | |
issues: | |
types: [opened, edited, labeled, unlabeled] | |
jobs: | |
test_schedule: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run the action # You would run your tests before this using the output to set state/desc | |
uses: Sibz/github-status-action@v1 | |
with: | |
authToken: ${{secrets.GITHUB_TOKEN}} | |
context: 'Test run' | |
description: 'Passed' | |
state: 'success' | |
sha: ${{github.event.pull_request.head.sha || github.sha}} |