https://github.com/esss/qa-checklist-action
Action to make QA checks in PRs
https://github.com/esss/qa-checklist-action
Last synced: 4 days ago
JSON representation
Action to make QA checks in PRs
- Host: GitHub
- URL: https://github.com/esss/qa-checklist-action
- Owner: ESSS
- License: mit
- Created: 2023-04-03T12:04:00.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2026-04-28T11:48:58.000Z (about 2 months ago)
- Last Synced: 2026-04-28T13:34:09.200Z (about 2 months ago)
- Language: Python
- Size: 63.5 KB
- Stars: 0
- Watchers: 13
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# qa-checklist-action
Action to make QA checks in PRs.
When a pull request is opened or reopened, we check if the JIRA issue associated with the branch is of
one of configured types (such as `Design`, `Story`, etc.) -- if that's the case, we post a new comment containing a
check-list of QA tasks that need to be done in order to merge the PR.
To configure, add a new workflow in `.github/workflows`, configuring it like this:
```yaml
name: qa-checklist
on:
pull_request:
types: [opened, reopened]
jobs:
qa-checklist:
runs-on: ubuntu-latest
steps:
- uses: ESSS/qa-checklist-action@v1
with:
# jira_url is optional, defaulting to the URL below.
jira_url: https://eden.esss.co/jira
jira_username: ${{ secrets.JIRA_BOT_USER }}
jira_password: ${{ secrets.JIRA_BOT_PASSWORD }}
github_token: ${{ secrets.EDEN_GITHUB_TOKEN }}
ping_users: user1,user2
issue_types: Story,Design
```