Added documentation for periodic confirmation in the NNS dapp #269
Workflow file for this run
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: Tag Docs PRs | |
on: | |
pull_request: | |
paths: | |
- docs/developer-docs/** | |
jobs: | |
docs-tag: | |
name: Tag PR with documentation | |
if: ${{ github.event_name == 'pull_request' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Tag PR with documentation | |
run: | | |
gh pr edit ${{ github.event.pull_request.number }} --add-label documentation | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |