feat: declarative publications and subscriptions #393
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
# Verify if a pull request contains the labels required to enable the merge button. | |
name: require-labels | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- labeled | |
- unlabeled | |
env: | |
REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
require-labels: | |
name: Require labels | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Require labels | |
uses: docker://agilepathway/pull-request-label-checker:v1.6.56 | |
with: | |
any_of: "ok to merge :ok_hand:" | |
none_of: "do not merge" | |
repo_token: ${{ env.REPO_TOKEN }} |