Skip to content

Expose Universal Filters and Shortcodes in configuration API (to load into custom engines that support them) #877

Expose Universal Filters and Shortcodes in configuration API (to load into custom engines that support them)

Expose Universal Filters and Shortcodes in configuration API (to load into custom engines that support them) #877

name: Remove cleanup label on issues after comment
# https://github.com/marketplace/actions/close-issues-after-no-reply
on:
issue_comment:
types:
- created
jobs:
build:
runs-on: ubuntu-latest
if: |
github.event.comment.author_association != 'OWNER' &&
github.event.comment.author_association != 'COLLABORATOR'
steps:
- name: Remove cleanup label on issues after comment
uses: octokit/[email protected]
continue-on-error: true
with:
route: DELETE /repos/:repository/issues/:issue/labels/:label
repository: ${{ github.repository }}
issue: ${{ github.event.issue.number }}
label: cleanup
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}