Issue Opened/Edited #11
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: Issue Opened/Edited | |
# This workflow will run when an issue is opened or edited | |
on: | |
issues: | |
types: | |
- opened | |
- edited | |
jobs: | |
validate: | |
name: Parse and Validate Issue | |
runs-on: ubuntu-latest | |
# The validation job will only run if the issue has specific label(s). In | |
# this case, the issue must have the `issueops:new-thing` label. | |
if: | | |
contains(github.event.issue.labels.*.name, 'issueops:new-thing') | |
steps: | |
# This is required to access the repository's files. Specifically, the | |
# issue forms template and the additional validation configuration. | |
- name: Checkout Repository | |
id: checkout | |
uses: actions/checkout@v4 | |
# If your validation scripts include any third-party dependencies, you | |
# will need to install them. First, setup Node.js on the runner. | |
- name: Setup Node.js | |
id: setup-node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: npm | |
# Next, install the dependencies from `package.json`. | |
- name: Install Dependencies | |
id: install | |
run: npm install | |
# Parse the issue body and convert it to JSON. | |
- name: Parse Issue Body | |
id: parse | |
uses: issue-ops/[email protected] | |
with: | |
body: ${{ github.event.issue.body }} | |
issue-form-template: example-request.yml | |
workspace: ${{ github.workspace }} | |
# If you have custom validators that need to access any GitHub APIs not | |
# controlled by GitHub Actions permissions, you will need to provide a PAT | |
# or generate a GitHub App token and pass it to the validator. For | |
# example, this token has permissions to read organization teams in order | |
# to validate that teams specified in the issue body actually exist. | |
- name: Generate App Token | |
id: token | |
uses: actions/create-github-app-token@v1 | |
with: | |
app_id: ${{ secrets.ISSUEOPS_DEMO_APP_ID }} | |
private_key: ${{ secrets.ISSUEOPS_DEMO_APP_KEY }} | |
# Validate the parsed issue body against the issue form template and any | |
# custom validation scripts. | |
- name: Validate Issue | |
id: validate | |
uses: issue-ops/validator@main | |
with: | |
github-token: ${{ steps.token.outputs.token }} | |
issue-form-template: example-request.yml | |
parsed-issue-body: ${{ steps.parse.outputs.json }} | |
workspace: ${{ github.workspace }} | |
- name: Output Validation Results | |
id: output | |
run: | | |
echo "Result: ${{ steps.validate.outputs.result }}" | |
echo "Errors: ${{ steps.validate.outputs.errors }}" |