Skip to content

chore: update Alpine base image from 3.21 to 3.22 #6

chore: update Alpine base image from 3.21 to 3.22

chore: update Alpine base image from 3.21 to 3.22 #6

Workflow file for this run

name: New issues into Triage
on:
issues:
types: [opened]
jobs:
comment:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v7
with:
github-token: ${{ github.token }}
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: '👋 Hi and Thanks for Reporting!'
})
github.rest.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ['Triage']
})