Update psutil requirement from <=7.1.0,>=5.9 to >=5.9,<=7.1.1 #378
Workflow file for this run
This file contains hidden or 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: Project automations | |
| on: | |
| issues: | |
| types: | |
| - opened | |
| pull_request: | |
| types: | |
| - opened | |
| jobs: | |
| issue_opened: | |
| name: issue_opened | |
| runs-on: ubuntu-latest | |
| if: github.event_name == 'issues' && github.event.action == 'opened' | |
| steps: | |
| - name: 'Move issue to Todo' | |
| uses: leonsteinhaeuser/[email protected] | |
| with: | |
| gh_app_secret_key: ${{ secrets.GH_APP_SECRET_KEY }} | |
| gh_app_ID: ${{ secrets.GH_APP_ID }} | |
| gh_app_installation_ID: ${{ secrets.GH_APP_INSTALLATION_ID }} | |
| organization: exaworks | |
| project_id: 1 | |
| resource_node_id: ${{ github.event.issue.node_id }} | |
| status_value: "Todo" | |
| pr_opened: | |
| name: pr_opened | |
| runs-on: ubuntu-latest | |
| if: github.event_name == 'pull_request' && github.event.action == 'opened' | |
| steps: | |
| - name: 'Move PR to "In Progress"' | |
| uses: leonsteinhaeuser/[email protected] | |
| with: | |
| gh_app_secret_key: ${{ secrets.GH_APP_SECRET_KEY }} | |
| gh_app_ID: ${{ secrets.GH_APP_ID }} | |
| gh_app_installation_ID: ${{ secrets.GH_APP_INSTALLATION_ID }} | |
| organization: exaworks | |
| project_id: 1 | |
| resource_node_id: ${{ github.event.pull_request.node_id }} | |
| status_value: "In Progress" |