2nd fullnode seems slow & unresponsive #160
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
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 }} |