-
Notifications
You must be signed in to change notification settings - Fork 900
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR enhances the issue workflow; CAgg related issues are automatically added to the CAgg project board.
- Loading branch information
1 parent
aa81f17
commit 0435267
Showing
1 changed file
with
11 additions
and
4 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,4 +1,4 @@ | ||
name: Add bugs to bugs project | ||
name: Process issue workflows | ||
|
||
"on": | ||
issues: | ||
|
@@ -8,20 +8,27 @@ name: Add bugs to bugs project | |
|
||
jobs: | ||
add-to-project: | ||
name: Add issue to project | ||
name: Add issue to projects | ||
# issue_comment is triggered when commenting on both issues and | ||
# pull requests. To avoid adding pull requests to the bug board, | ||
# filter out pull requests | ||
if: ${{ !github.event.issue.pull_request }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
- name: Add to bugs board | ||
uses: actions/[email protected] | ||
with: | ||
project-url: https://github.com/orgs/timescale/projects/55 | ||
github-token: ${{ secrets.ORG_AUTOMATION_TOKEN }} | ||
labeled: bug, needs-triage, flaky-test | ||
label-operator: OR | ||
|
||
- name: Add to CAggs board | ||
uses: actions/[email protected] | ||
with: | ||
project-url: https://github.com/orgs/timescale/projects/128 | ||
github-token: ${{ secrets.ORG_AUTOMATION_TOKEN }} | ||
labeled: continuous_aggregate | ||
|
||
waiting-for-author: | ||
name: Waiting for Author | ||
runs-on: ubuntu-latest | ||
|