-
-
Notifications
You must be signed in to change notification settings - Fork 213
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
Showing
12 changed files
with
60 additions
and
51 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
6 changes: 4 additions & 2 deletions
6
.github/workflows/set_dashboard_columns.yml → .github/workflows/assign_project_columns.yml
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 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 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 |
---|---|---|
@@ -1,20 +1,22 @@ | ||
name: "detect conflicts" | ||
name: "detect_conflicts" | ||
|
||
on: | ||
push: | ||
branches: | ||
- "*" | ||
tags: | ||
- "!*" | ||
pull_request: | ||
types: synchronize | ||
pull_request_target: | ||
types: | ||
- synchronize | ||
|
||
jobs: | ||
main: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Run the action to detect unmergeable PRs | ||
uses: cats-oss/github-action-detect-unmergeable@v2.1.1 | ||
env: | ||
LABEL_NEED_REBASE: "needs rebase" | ||
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | ||
- uses: eps1lon/actions-label-merge-conflict@2.1.0 | ||
with: | ||
dirtyLabel: "needs rebase" | ||
repoToken: "${{ secrets.GITHUB_TOKEN }}" | ||
commentOnDirty: ":robot: The latest upstream change made this pull request unmergeable. | ||
Please resolve the merge conflicts." |
8 changes: 4 additions & 4 deletions
8
.github/workflows/remove_labels.yml → .github/workflows/pr_closed.yml
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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
name: "remove labels" | ||
name: "pr_closed" | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- closed | ||
|
||
jobs: | ||
remove-labels: | ||
main: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: andymckay/labeler@master | ||
- uses: andymckay/labeler@1.0.4 | ||
with: | ||
remove-labels: 'work in progress,ready for review,review in progress,needs revision' | ||
remove-labels: 'work in progress,ready for review,review in progress,needs revision,needs rebase' |
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 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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: "pr_ready" | ||
|
||
on: | ||
pull_request_target: | ||
types: | ||
- review_requested | ||
|
||
jobs: | ||
main: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: andymckay/labeler@1.0.4 | ||
with: | ||
add-labels: 'ready for review' | ||
remove-labels: 'work in progress,needs revision' |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: "pr_wip" | ||
|
||
on: | ||
pull_request_target: | ||
types: | ||
- converted_to_draft | ||
- review_request_removed | ||
|
||
jobs: | ||
main: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: andymckay/labeler@1.0.4 | ||
with: | ||
add-labels: 'work in progress' | ||
remove-labels: 'ready for review,needs revision' |
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 |
---|---|---|
|
@@ -4,7 +4,6 @@ on: | |
push: | ||
tags: | ||
- v* | ||
|
||
workflow_dispatch: | ||
|
||
jobs: | ||
|
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 |
---|---|---|
|
@@ -6,8 +6,7 @@ on: | |
- master | ||
|
||
jobs: | ||
|
||
triggers: | ||
main: | ||
if: | | ||
github.repository_owner == 'roc-streaming' | ||
|
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 file was deleted.
Oops, something went wrong.