[ci] chore(workflow): add solved label and correct milestone to issue when PR is merged (#252) #66
Workflow file for this run
This file contains hidden or 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: "[Integrations] Add to Project" | |
| # This GitHub Actions workflow automatically adds newly opened issues and pull requests to a specific GitHub project. | |
| on: | |
| issues: | |
| types: | |
| - opened | |
| pull_request_target: | |
| types: | |
| - opened | |
| jobs: | |
| add-to-project: | |
| name: Add issue to project | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/add-to-project@v1.0.2 | |
| with: | |
| project-url: ${{ vars.PROJECT_URL }} | |
| github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} |