summaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows/commit_formatting.yml
Commit message (Collapse)AuthorAge
* tools/ci.sh: Fix commit msg checking when PR branch HEAD behind master.Angus Gratton2024-10-31
| | | | | | | | | | | | | | | | | Fixes the problem noted at https://github.com/micropython/micropython/pull/15547#issuecomment-2434479702 which is that, because default CI HEAD for a PR is a (generated) merge commit into the master branch's current HEAD, then if the PR branch isn't fully rebased then the commit check runs against commits from master as well! Also drops running this check on push, the pull_request event is triggered by default on open and update ("synchronized" event), which probably covers the cases where this check should run. This work was funded through GitHub Sponsors. Signed-off-by: Angus Gratton <angus@redyak.com.au>
* github/workflows: Bump actions/setup-python from 4 to 5.dependabot[bot]2023-12-15
| | | | | | | | | | | | | | | | Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4 to 5. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
* github/workflows: Bump actions/checkout from 3 to 4.dependabot[bot]2023-09-05
| | | | | | | | | | | | | | | | Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
* github/workflows: Cancel when branch is updated.David Lechner2022-12-14
| | | | | | | | This adds a concurrency section to all github workflows to cancel any in progress workflow when a branch is updated. This should cancel any ongoing or queued workflows, e.g. when a pull request is updated. Signed-off-by: David Lechner <david@pybricks.com>
* github/workflows: Bump actions/setup-python from 1 or 2 to 4.dependabot[bot]2022-11-11
| | | | | | | | | | | | | | | | Bumps [actions/setup-python](https://github.com/actions/setup-python) from 1 or 2 to 4. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v2...v4) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
* github/workflows: Bump actions/checkout to v3.Chris Swan2022-11-11
| | | | | | The existing actions/checkout@v2 is causing Node v12 deprecation warnings to be shown in GitHub Actions. v3 uses Node v16, which will stop the warnings.
* github/workflows: Add workflow to verify commit message format.stijn2021-01-30
Using the new tools/verifygitlog.py script.