Fix gather_facts to false in configure_aap.yml #1676
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
| --- | |
| # https://github.com/marketplace/actions/issues-helper | |
| name: Issue Remove Labels | |
| on: | |
| issues: | |
| types: [reopened] | |
| issue_comment: | |
| types: [created] | |
| jobs: | |
| remove-inactive: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: remove inactive | |
| if: github.event.issue.state == 'open' | |
| uses: actions-cool/issues-helper@v3 | |
| with: | |
| actions: 'remove-labels' | |
| issue-number: ${{ github.event.issue.number }} | |
| labels: 'inactive' | |
| ... |