This repository has been archived by the owner on Nov 27, 2023. It is now read-only.
Docker Compose’s integration for ECS and ACI is retiring in November 2023. #1368
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
name: Remove pending label on answer | |
on: | |
issue_comment: | |
types: [ created ] | |
jobs: | |
pending: | |
if: ${{ !github.event.issue.pull_request && contains(github.event.issue.labels.*.name, 'pending') }} | |
name: Remove pending label | |
runs-on: ubuntu-latest | |
steps: | |
- name: removelabel | |
uses: siegerts/pending-response@v1 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
pending-response-label: pending |