-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cd04acc
commit 84eb39e
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -231,6 +231,27 @@ jobs: | |
</details> | ||
### Merge Block | ||
<details> | ||
<summary>The action can be used to block the merge if a do not merge label is set.</summary> | ||
```yml | ||
name: Merge Block | ||
|
||
on: | ||
pull_request: | ||
types: [opened, labeled, unlabeled] | ||
|
||
jobs: | ||
block: | ||
uses: Staffbase/gha-workflows/.github/workflows/[email protected] | ||
with: | ||
# optional: name of the label if the PR should not be merged, default: do not merge | ||
label: merge block | ||
``` | ||
</details> | ||
### Release Drafter | ||
<details> | ||
|