Skip to content

Bump super-linter/super-linter from 5 to 6 #4

Bump super-linter/super-linter from 5 to 6

Bump super-linter/super-linter from 5 to 6 #4

Workflow file for this run

name: Set expectations on PR
on:
pull_request_target:
types:
- opened
- reopened
jobs:
comment-on-pull-request:
name: Comment on PR to set expectations
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v7
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: '👋 Thanks for opening a pull request! I try to review this repo at least once a week.'
})