Skip to content

Commit a65f081

Browse files
authored
chore: Add Issue to public roadmap project (#288)
#### Summary <!-- 🎉 Thank you for making CloudQuery awesome by submitting a PR 🎉 --> Same as cloudquery/cloudquery#2693 --- Use the following steps to ensure your PR is ready to be reviewed - [ ] Read the [contribution guidelines](../blob/main/CONTRIBUTING.md) 🧑‍🎓 - [ ] Run `go fmt` to format your code 🖊 - [ ] Lint your changes via `golangci-lint run` 🚨 (install golangci-lint [here](https://golangci-lint.run/usage/install/#local-installation)) - [ ] Update or add tests 🧪 - [ ] Ensure the status checks below are successful ✅
1 parent 7570d7e commit a65f081

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

.github/workflows/issue_to_project.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,16 @@ on:
55
- opened
66
- reopened
77

8-
# map fields with customized labels
9-
env:
10-
todo: Triage
11-
128
jobs:
139
issue_opened_or_reopened:
1410
name: issue_opened_or_reopened
1511
runs-on: ubuntu-latest
16-
if: github.event_name == 'issues' && (github.event.action == 'opened' || github.event.action == 'reopened') && github.event.issue.user.login != 'cq-bot'
12+
if: github.event.issue.user.login != 'cq-bot'
1713
steps:
18-
- name: Move issue to ${{ env.todo }}
14+
- name: Add issue to Public Roadmap
1915
uses: leonsteinhaeuser/[email protected]
2016
with:
2117
gh_token: ${{ secrets.GH_CQ_BOT }}
2218
organization: cloudquery
23-
project_id: 2
19+
project_id: 7
2420
resource_node_id: ${{ github.event.issue.node_id }}
25-
status_value: ${{ env.todo }} # Target status

0 commit comments

Comments
 (0)