I would like to add an automatic restart button on the web page and be able to monitor the use of threads in the plugin list in real time #332
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: Issue Automation | |
on: | |
issues: | |
types: | |
- opened | |
# map fields with customized labels | |
env: | |
inbox: INBOX | |
refinement: Needs Refinement | |
refined: Refined & Actionable | |
assigned: Assigned to Milestone | |
done: Done | |
jobs: | |
issue_opened: | |
name: New Issue Opened | |
runs-on: ubuntu-latest | |
if: github.event_name == 'issues' && github.event.action == 'opened' | |
steps: | |
- name: Add issue to ${{ env.inbox }} | |
uses: leonsteinhaeuser/[email protected] | |
with: | |
gh_token: ${{ secrets.GITHUB_TOKEN }} | |
organization: plan-player-analytics | |
project_id: 3 | |
resource_node_id: ${{ github.event.issue.node_id }} | |
status_value: ${{ env.inbox }} # Target status |