sdk%fix: actually validate MSRV and stable toolchains, repair MSRV builds, add dependency graph MSRV and general TOML linter as lint_cargo.py
#193
Workflow file for this run
This file contains hidden or 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: Tag PRs | |
| on: | |
| pull_request_target: | |
| types: [synchronize, opened, reopened, closed] | |
| schedule: | |
| - cron: "0 6 * * 1" | |
| concurrency: | |
| group: ${{ github.workflow }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| tag: | |
| name: Tag pull requests | |
| runs-on: ubuntu-slim | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Configure git | |
| run: | | |
| git config user.name "github-actions[bot]" | |
| git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
| - name: Tag conflicting and stale PRs | |
| uses: actions/github-script@v8 | |
| with: | |
| script: | | |
| const script = require("./.github/scripts/pr_tag.js"); | |
| await script({ github, context }); |