forked from roc-streaming/roc-toolkit
-
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
name: "assign project" | ||
name: "assign_project" | ||
|
||
on: | ||
issues: | ||
types: | ||
- opened | ||
|
||
jobs: | ||
assign-project: | ||
main: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: alex-page/[email protected] | ||
continue-on-error: true | ||
with: | ||
repo-token: "${{ secrets.REPO_MANAGEMENT }}" | ||
project: "kanban board" | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,16 @@ | ||
name: "set dashboard columns" | ||
name: "assign_project_columns" | ||
|
||
on: | ||
issues: | ||
types: [labeled] | ||
types: | ||
- labeled | ||
|
||
jobs: | ||
main: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: konradpabjan/[email protected] | ||
continue-on-error: true | ||
with: | ||
action-token: "${{ secrets.REPO_MANAGEMENT }}" | ||
project-url: "https://github.com/roc-streaming/roc-toolkit/projects/2" | ||
|
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/[email protected] | ||
env: | ||
LABEL_NEED_REBASE: "needs rebase" | ||
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | ||
- uses: eps1lon/[email protected] | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,14 @@ | ||
name: "lint pr" | ||
name: "pr_opened" | ||
|
||
on: | ||
pull_request_target: | ||
types: | ||
- opened | ||
|
||
jobs: | ||
|
||
lint: | ||
main: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: Check linked issue | ||
id: linked-issues | ||
uses: nearform-actions/[email protected] | ||
|
@@ -43,7 +41,7 @@ jobs: | |
steps.mentioned-issues.outputs.result == 'false' | ||
uses: thollander/actions-comment-pull-request@v2 | ||
with: | ||
message: "Upon creation, pull request description does not have a link to an issue. | ||
message: ":robot: Upon creation, pull request description does not have a link to an issue. | ||
If there is a related issue, please add it to the description | ||
using any of the [supported formats](https://docs.github.com/en/get-started/\ | ||
writing-on-github/working-with-advanced-formatting/autolinked-references-and-urls)." |
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/[email protected] | ||
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/[email protected] | ||
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.