Job nested process workflow #31139
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
# This workflow will triage pull requests and apply a label based on the | |
# paths that are modified in the pull request. | |
# | |
# To use this workflow, you will need to set up a .github/labeler.yml | |
# file with configuration. For more information, see: | |
# https://github.com/actions/labeler/blob/master/README.md | |
name: Pull Request Labeler | |
on: | |
pull_request: | |
types: [opened, edited, synchronize, reopened] | |
schedule: | |
- cron: '0 */12 * * *' | |
# cancel the current workflow if another commit was pushed on the same PR or reference | |
# uses the GitHub workflow name to avoid collision with other workflows running on the same PR/reference | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
original-labeler: | |
# reference: https://github.com/actions/labeler | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/labeler@v2 | |
with: | |
configuration-path: .github/labeler-files.yml | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
extended-labeler: | |
# reference: https://github.com/ilyam8/periodic-pr-labeler | |
runs-on: ubuntu-latest | |
steps: | |
- uses: docker://docker.io/ilyam8/periodic-pr-labeler:latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GITHUB_REPOSITORY: ${{ github.repository }} | |
LABEL_MAPPINGS_FILE: .github/labeler-files.yml | |
wip: | |
# reference: https://github.com/wip/action | |
# mark PRs with following keywords in the title: wip, work in progress, :construction: | |
# blocks merge of these branches using requirement: | |
# [Settings > Branch > master > Protect matching branches > Require > check status with "WIP (action)"] | |
if: ${{ github.event_name == 'pull_request' }} # WIP only works during PRs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: wip/action@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |