Skip to content

wrong type of authenticator_uid in the documentation and not supported by ansible.platform.user 2.5.3 (latest version) #1335

wrong type of authenticator_uid in the documentation and not supported by ansible.platform.user 2.5.3 (latest version)

wrong type of authenticator_uid in the documentation and not supported by ansible.platform.user 2.5.3 (latest version) #1335

---
# 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'
...