[Dropdown]: unable conditionally render a dropdown on button click #367
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 Unblocked Comment | |
on: | |
issues: | |
types: [closed] | |
jobs: | |
comment-on-unblocked-issues: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "Create unblocked comment" | |
uses: actions/github-script@v7 | |
env: | |
ISSUE_VERIFIERS: ${{secrets.ISSUE_VERIFIERS}} | |
with: | |
script: | | |
const action = require('${{ github.workspace }}/.github/scripts/addUnblockedComment.js') | |
await action({github, context}) |