-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #954 from dequelabs/release
Release v4.8.2
- Loading branch information
Showing
83 changed files
with
21,500 additions
and
13,196 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
version: 2 | ||
|
||
updates: | ||
- package-ecosystem: 'github-actions' | ||
directory: '/' | ||
schedule: | ||
interval: 'monthly' | ||
open-pull-requests-limit: 10 | ||
commit-message: | ||
prefix: 'chore' | ||
groups: | ||
# Any updates not caught by the group config will get individual PRs | ||
gha-low-risk: | ||
update-types: | ||
- 'minor' | ||
- 'patch' | ||
|
||
- package-ecosystem: 'npm' | ||
directory: '/' | ||
schedule: | ||
interval: 'monthly' | ||
open-pull-requests-limit: 10 | ||
commit-message: | ||
prefix: 'chore' | ||
ignore: | ||
# Handled separately by its own workflow | ||
- dependency-name: '@axe-core/*' | ||
- dependency-name: 'axe-core' | ||
# Prevent updates to ESM-only versions | ||
- dependency-name: 'execa' | ||
versions: ['>=6.0.0'] | ||
- dependency-name: 'node-fetch' | ||
versions: ['>=3.0.0'] | ||
# Breaking change due to node version requirements | ||
- dependency-name: 'commander' | ||
versions: ['>=10.0.0'] | ||
groups: | ||
# Any updates not caught by the group config will get individual PRs | ||
npm-low-risk: | ||
update-types: | ||
- 'minor' | ||
- 'patch' |
This file was deleted.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Create release candidate | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version-locked: | ||
type: boolean | ||
description: Prevent this action from creating a minor or major release | ||
default: true | ||
|
||
jobs: | ||
create-release-candidate: | ||
timeout-minutes: 2 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: dequelabs/axe-api-team-public/.github/actions/create-release-candidate-v1@main | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
base: 'master' | ||
head: 'develop' | ||
release-script-path: './.github/scripts/prepare_release.sh' | ||
version-locked: ${{ inputs.version-locked }} | ||
env: | ||
GH_TOKEN: ${{ secrets.GH_PROJECT_TOKEN }} |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: Semantic PR footer | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- reopened | ||
- edited | ||
- synchronize | ||
|
||
jobs: | ||
semantic-pr-footer: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: dequelabs/axe-api-team-public/.github/actions/semantic-pr-footer-v1@main |
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
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
Oops, something went wrong.