ci: disable dependabot #518
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: 'build-test' | |
on: # rebuild any PRs and main branch changes | |
pull_request: | |
push: | |
branches: | |
- main | |
- 'releases/*' | |
jobs: | |
build: # make sure build/ci work properly | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: | | |
npm install | |
- run: | | |
npm run all | |
test: # make sure the action works on a clean machine without building | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./ | |
env: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
MOCK_RUN: true | |
with: | |
close_comment: Closing this issue because it appears to be empty. Please update the issue for it to be reopened. | |
open_comment: Reopening this issue because the author provided more information. | |
check_templates: true | |
template_close_comment: Closing this issue since the issue template was not filled in. Please provide us with more information to have this issue reopened. | |
template_open_comment: Reopening this issue because the author provided more information. | |
dry_run: true |