We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba5efc4 commit 5224870Copy full SHA for 5224870
.github/workflows/autotag_docs.yml
@@ -4,13 +4,17 @@ on:
4
5
jobs:
6
label-docs:
7
- if: contains(github.event.pull_request.title, 'Kilted Sync') || contains(github.event.pull_request.title, 'Jazzy Sync')
+ # if: contains(github.event.pull_request.title, 'Kilted Sync') || contains(github.event.pull_request.title, 'Jazzy Sync')
8
runs-on: ubuntu-latest
9
steps:
10
- name: Process docs PRs
11
env:
12
- GH_TOKEN: ${{ github.token }}
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
13
run: |
14
+
15
+ # Testing permissions of github token (must be removed before merge)
16
+ gh pr edit 762 --repo ros-navigation/docs.nav2.org --add-label documentation
17
18
# Determine ROS distro and label from PR title
19
pr_title="${{ github.event.pull_request.title }}"
20
0 commit comments