Error in meta_dependency_check with AAP 2.5 using ansible.controller and collection version 2.11.0 #1258
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
--- | |
# https://github.com/marketplace/actions/issues-helper | |
name: Issue Remove Labels | |
on: | |
issues: | |
types: [edited, reopened, labeled] | |
issue_comment: | |
types: [created, edited] | |
jobs: | |
remove-inactive: | |
runs-on: ubuntu-latest | |
steps: | |
- name: remove inactive | |
if: github.event.issue.state == 'open' && github.event.issue.user != 'github-actions' | |
uses: actions-cool/issues-helper@v3 | |
with: | |
actions: 'remove-labels' | |
issue-number: ${{ github.event.issue.number }} | |
labels: 'inactive' | |
... |