add initial guide working_with_contributor_documents.md #235
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: Close Linked Issues on PR Merge | |
| on: | |
| pull_request: | |
| types: [closed] | |
| branches: | |
| - dev-2.0 | |
| permissions: | |
| contents: read | |
| issues: write | |
| pull-requests: read | |
| jobs: | |
| close_issues: | |
| if: github.event.pull_request.merged == true | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Close linked issues on non-default branches | |
| uses: processing/branch-pr-close-issue@9fd7b409a12c677c5cdd8ff82c45600f790074e1 # v1 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| branch: dev-2.0 |