New OnCall initialization process #11506
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: Verify public documentation updated | |
on: | |
pull_request: | |
types: [assigned, opened, synchronize, reopened, labeled, unlabeled] | |
branches: | |
- main | |
- dev | |
jobs: | |
verify-public-docs-updated: | |
name: Verify public documentation updated | |
# Don't run this job if the "no public docs" label is applied to the PR | |
# https://github.com/orgs/community/discussions/26712#discussioncomment-3253012 | |
if: "!contains(github.event.pull_request.labels.*.name, 'pr:no public docs')" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Public documentation checker | |
run: ./.github/verify-public-docs-updated.sh |