Skip to content

[Question] Postgres db hardcoded to version 14 in docker compose instructions however current version is 17 ( in latest tag ) #143

[Question] Postgres db hardcoded to version 14 in docker compose instructions however current version is 17 ( in latest tag )

[Question] Postgres db hardcoded to version 14 in docker compose instructions however current version is 17 ( in latest tag ) #143

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'
});