chore(Renovate): Migrate to matchFileNames
#1163
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: Test | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
permissions: | |
contents: write # for pre-commit-action | |
jobs: | |
test: | |
name: Run Pre-commit Hooks | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Check out repository. | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Run pre-commit hooks. | |
uses: ScribeMD/[email protected] | |
- name: Send Slack notification with job status. | |
if: always() | |
uses: ./ | |
with: | |
bot-token: ${{ secrets.SLACK_BOT_TOKEN }} | |
channel-id: ${{ secrets.SLACK_ACTIONS_CHANNEL_ID }} | |
template: result |