Skip to content
This repository has been archived by the owner on Feb 22, 2024. It is now read-only.

Commit

Permalink
strangelove project management (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
boojamya authored May 11, 2022
1 parent e4bf753 commit da0e575
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/strangelove-project-management.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Strangelove Project Management
on:
issues:
types:
- opened
- reopened
- closed

jobs:
issue_opened_or_reopened:
name: issue_opened_or_reopened
runs-on: ubuntu-latest
if: |
startsWith(github.repository,'strangelove-ventures/') &&
github.event_name == 'issues' && (github.event.action == 'opened' || github.event.action == 'reopened')
steps:
- name: Add Issue to "Motherboard" Project Board
uses: leonsteinhaeuser/[email protected]
with:
gh_app_secret_key: ${{ secrets.MB_SECRET_KEY }}
gh_app_ID: ${{ secrets.MB_APP_ID }}
gh_app_installation_ID: ${{ secrets.MB_INSTALLATION_ID }}
organization: strangelove-ventures
project_id: 4
resource_node_id: ${{ github.event.issue.node_id }}

0 comments on commit da0e575

Please sign in to comment.