[Question] Postgres db hardcoded to version 14 in docker compose instructions however current version is 17 ( in latest tag ) #143
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 instance label when closing | |
on: | |
issues: | |
types: [closed] | |
jobs: | |
replycomment: | |
runs-on: ubuntu-latest | |
permissions: write-all | |
steps: | |
- uses: actions/github-script@v6 | |
if: contains(github.event.issue.labels.*.name, 'wait-30-days') | |
with: | |
script: | | |
await github.rest.issues.removeLabel({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
name: 'wait-30-days' | |
}); |