Skip to content

Commit

Permalink
add missing token
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Feb 16, 2021
1 parent 810eff2 commit f4709d6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/pr-needs-documentation.yml
Expand Up @@ -58,6 +58,8 @@ jobs:
- name: Get PR body as JSON
id: get_pr_info
uses: octokit/request-action@v2.x
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
route: GET /repos/qgis/QGIS/pulls/:pull_number
pull_number: ${{ github.event.pull_request.number }}
Expand All @@ -74,13 +76,14 @@ jobs:
- name: Get PR commits
uses: octokit/request-action@v2.x
id: get_pr_commits
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
route: GET /repos/qgis/QGIS/pulls/:pull_number/commits
pull_number: ${{ github.event.pull_request.number }}

# extracts the matching commits
- name: Filter commits with \[needs?.doc(umentation)?s?\]
if: github.event.pull_request.merged && ( ( github.event.action == 'closed' && contains( github.event.pull_request.labels.*.name, 'Needs Documentation') ) || github.event.label.name == 'Needs Documentation' )
id: filtered_commits
env:
JSON_DATA: ${{ steps.get_pr_commits.outputs.data }}
Expand Down

0 comments on commit f4709d6

Please sign in to comment.