remove fc39 #69
Workflow file for this run
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: Pull Request Checks | |
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.' | |
}) | |
a-cat-for-your-effort: | |
name: A cat for your effort! | |
runs-on: ubuntu-latest | |
steps: | |
- uses: ruairidhwm/action-cats@1.0.2 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
super-linter: | |
name: Run the super-linter | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Lint Code Base | |
uses: super-linter/super-linter/slim@v7 | |
env: | |
VALIDATE_ALL_CODEBASE: false | |
DEFAULT_BRANCH: main | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
VALIDATE_DOCKERFILE_HADOLINT: true | |
DOCKERFILE_HADOLINT_FILE_NAME: .hadolint.yaml | |
VALIDATE_MARKDOWN: true | |
MARKDOWN_CONFIG_FILE: .markdownlint.json | |
VALIDATE_BASH: true |