-
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.
[#96] Move project synchronisation to Oztechan
- Loading branch information
1 parent
49fe11a
commit 2226319
Showing
1 changed file
with
5 additions
and
25 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 |
---|---|---|
|
@@ -4,37 +4,17 @@ on: | |
types: | ||
- opened | ||
- reopened | ||
- closed | ||
pull_request: | ||
types: | ||
- opened | ||
- ready_for_review | ||
- reopened | ||
- review_requested | ||
- closed | ||
- converted_to_draft | ||
|
||
jobs: | ||
ProjectAutomations: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: 'Move to "📖 To do"' | ||
if: (github.event_name == 'pull_request' || github.event_name == 'issues') && | ||
(github.event.action == 'opened' || github.event.action == 'reopened' || github.event.action == 'ready_for_review' || github.event_name == 'pull_request' && github.event.action == 'converted_to_draft') | ||
uses: leonsteinhaeuser/[email protected] | ||
with: | ||
gh_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | ||
organization: SubMob | ||
project_id: 1 | ||
resource_node_id: ${{ github.event.pull_request.node_id }} | ||
status_value: "📖 To do" | ||
|
||
- name: 'Move to "✅ Done"' | ||
if: (github.event_name == 'pull_request' || github.event_name == 'issues') && | ||
github.event.action == 'closed' | ||
uses: leonsteinhaeuser/[email protected] | ||
with: | ||
gh_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | ||
organization: SubMob | ||
project_id: 1 | ||
resource_node_id: ${{ github.event.pull_request.node_id }} | ||
status_value: "✅ Done" | ||
uses: Oztechan/Global/.github/workflows/project-reusable.yml@bf9138c8831500b721597822e6edf51b30423bf3 | ||
with: | ||
project_id: 8 | ||
secrets: inherit |