This repository has been archived by the owner on Nov 27, 2023. It is now read-only.
Error "InvalidParameterException: Invalid identifier: Identifier is for cluster..." when running docker compose up for AWS ECS #1366
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 |