Add "optional" option for resource "okta_auth_server_scope" #7
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: Remove Label on Issue Comment | |
permissions: | |
issues: write | |
on: | |
issue_comment: | |
types: [created] | |
jobs: | |
issue_commented: | |
name: Issue comment | |
if: ${{ !github.event.issue.pull_request }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/github-script@v6 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
script: | | |
const labelToRemove = 'waiting-response'; | |
const issueNumber = context.issue.number; | |
const owner = context.repo.owner; | |
const repo = context.repo.repo; | |
const { data: labels } = await github.rest.issues.listLabelsOnIssue({ | |
owner: owner, | |
repo: repo, | |
issue_number: issueNumber | |
}); | |
const labelNames = labels.map(label => label.name); | |
if (labelNames.includes(labelToRemove)) { | |
await github.rest.issues.removeLabel({ | |
issue_number: issueNumber, | |
owner: owner, | |
repo: repo, | |
name: labelToRemove | |
}); | |
} | |
# pr_commented: | |
# # This job only runs for pull request comments | |
# name: PR comment | |
# if: ${{ github.event.issue.pull_request }} | |
# runs-on: ubuntu-latest | |
# steps: | |
# - run: | | |
# echo A comment on PR $NUMBER | |
# env: | |
# NUMBER: ${{ github.event.issue.number }} |