Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
2ff45dc
feat: upgrade commitlint to latest version
wagoid Mar 28, 2024
d901f08
Merge pull request #760 from wagoid/fix/upgrade-commitlint
wagoid Mar 28, 2024
e15adf3
chore(release): publish 5.4.6 [skip-ci]
Mar 28, 2024
06143b2
fix: rollback update of commitlint to support configs that use commonjs
wagoid Mar 28, 2024
234f2a3
ci: include all commits when releasing to build proper release notes
wagoid Mar 28, 2024
b405939
Merge pull request #761 from wagoid/fix/rollback-esm-update
wagoid Mar 28, 2024
adaa347
chore(release): publish 5.5.0 [skip-ci]
Mar 28, 2024
6ee28c9
fix: upgrade commitlint to latest v18
wagoid Mar 28, 2024
05eef5d
Merge pull request #762 from wagoid/fix-upgrade-commitlint-to-latest-v18
wagoid Mar 28, 2024
9763196
chore(release): publish 5.5.1 [skip-ci]
Mar 28, 2024
732f0ad
feat: upgrade to commitlint v19
wagoid Mar 28, 2024
1b31c7b
Merge pull request #763 from wagoid/feat/upgrade-commitlint-v19
wagoid Mar 28, 2024
3c75220
chore(release): publish 6.0.0 [skip-ci]
Mar 28, 2024
edca067
ci: group minor and patch updates in a single PR [skip-ci]
wagoid Apr 1, 2024
70fb930
chore(deps): bump undici from 5.27.0 to 5.28.4
dependabot[bot] Apr 4, 2024
ab651d8
chore(deps-dev): bump the minor-and-patch group with 4 updates
dependabot[bot] Apr 8, 2024
8d57fde
Merge pull request #778 from wagoid/dependabot/npm_and_yarn/undici-5.…
wagoid Apr 10, 2024
8fa8a3e
Merge pull request #779 from wagoid/dependabot/npm_and_yarn/minor-and…
wagoid Apr 10, 2024
bfdc3d1
chore(deps): bump tar from 6.1.11 to 6.2.1
dependabot[bot] Apr 10, 2024
a7438fc
chore(deps): bump ip from 1.1.8 to 1.1.9
dependabot[bot] Apr 10, 2024
7070c25
chore(deps): bump semver
dependabot[bot] Apr 10, 2024
b529831
Merge pull request #781 from wagoid/dependabot/npm_and_yarn/tar-6.2.1
wagoid Apr 10, 2024
d6e1800
Merge pull request #782 from wagoid/dependabot/npm_and_yarn/ip-1.1.9
wagoid Apr 10, 2024
ada5d09
Merge pull request #783 from wagoid/dependabot/npm_and_yarn/multi-362…
wagoid Apr 10, 2024
7f0a61d
chore(release): publish 6.0.1 [skip-ci]
Apr 10, 2024
2e05d03
build: update node.js version to 20.16.0
Jayllyz Aug 3, 2024
3265b23
chore(ci): run ci with node 20.16
Jayllyz Aug 3, 2024
310ec1e
Merge pull request #796 from Jayllyz/build/bump-node-lts
wagoid Aug 5, 2024
baa1b23
chore(release): publish 6.0.2 [skip-ci]
Aug 5, 2024
70e22e9
feat: updating push event trigger to use rest API (OctoKit) vs push e…
Brian-Triplett Aug 19, 2024
c3ab7fd
fix: updating unit tests with mocking push octokit list commits
Brian-Triplett Aug 20, 2024
0de1544
Merge pull request #798 from ncino/feat/using-rest-for-push
wagoid Aug 20, 2024
dbd4ecd
chore(release): publish 6.1.0 [skip-ci]
Aug 20, 2024
09a8abb
Revert "feat: updating push event trigger to use rest API (OctoKit) v…
wagoid Aug 21, 2024
bc25072
Merge pull request #800 from wagoid/revert-798-feat/using-rest-for-push
wagoid Aug 21, 2024
a2bc521
chore(release): publish 6.1.1 [skip-ci]
Aug 21, 2024
47ff131
fix: using compareCommits for push event commit query (#801)
Brian-Triplett Sep 4, 2024
3d28780
chore(release): publish 6.1.2 [skip-ci]
Sep 4, 2024
ef2cd3b
feat: handle merge_group event - get squashed commit (#806)
YossiSaadi Dec 16, 2024
0184f5a
chore(release): publish 6.2.0 [skip-ci]
Dec 16, 2024
ddda164
chore: readme.md update github actions versions (#808)
cclauss Jan 14, 2025
b948419
chore(release): publish 6.2.1 [skip-ci]
Jan 14, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
node_modules
commitlint.config.js
commitlint.config.mjs
action.yml
.github
CHANGELOG.md
Expand Down
7 changes: 6 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,10 @@
"node/no-unpublished-require": "off",
"node/no-unpublished-import": "off",
"node/no-unsupported-features/es-syntax": "off"
}
},
"ignorePatterns": [
".github/tasks/actionYamlUpdater.js",
"rollup.config.js",
"fixtures"
]
}
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ updates:
schedule:
interval: weekly
open-pull-requests-limit: 99
groups:
minor-and-patch:
applies-to: version-updates
update-types:
- "patch"
- "minor"

- package-ecosystem: docker
directory: /
Expand Down
4 changes: 2 additions & 2 deletions .github/tasks/actionYamlUpdater.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ const yaml = require('yaml')

const versionRegex = /\d+\.\d+\.\d+/

module.exports.readVersion = (contents) =>
exports.readVersion = (contents) =>
yaml.parse(contents).runs.image.match(versionRegex)[0]

module.exports.writeVersion = (contents, version) => {
exports.writeVersion = (contents, version) => {
const actionFile = yaml.parse(contents)
actionFile.runs.image = actionFile.runs.image.replace(versionRegex, version)

Expand Down
18 changes: 13 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: '20.9.0'
node-version: '20.16.0'
- uses: actions/cache@v3
with:
path: |
Expand All @@ -36,9 +36,11 @@ jobs:
DOCKER_REGISTRY_URL: registry.hub.docker.com
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '20.9.0'
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: '20.16.0'
- uses: actions/cache@v3
with:
path: |
Expand All @@ -53,7 +55,13 @@ jobs:
git config user.email '[email protected]'
git config user.name 'GitHub Action'
- name: Update versions and changelog
run: npx commit-and-tag-version
run: |
# remove `"type": "module"` from package.json since `commit-and-tag-version` doesn't support it
sed -i '/"type": "module",/c\' package.json
npx commit-and-tag-version
# bring back `"type": "module"`
sed -i 's/"private": true,/"private": true,\n "type": "module",/' package.json
git commit --amend --no-edit
- name: Set VERSION env var
run: |
version=`node -p "require('./package.json').version"`
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/commitlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
- uses: actions/checkout@v3
- run: sed -i -E "s/(docker:.+)/Dockerfile/" ./action.yml
- run: echo -n '' > .dockerignore
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: '20.9.0'
node-version: '20.16.0'
- uses: actions/cache@v3
with:
path: |
Expand All @@ -31,9 +31,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: '20.9.0'
node-version: '20.16.0'
- uses: actions/cache@v3
with:
path: |
Expand Down
2 changes: 1 addition & 1 deletion .lintstagedrc.js → .lintstagedrc.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module.exports = {
export default {
'*.{ts,tsx,vue,css,less,scss,html,htm,md,markdown}': 'prettier --write',
'*.{json,yml,yaml}': ['prettier --write', () => 'npm run test'],
'*.{js,jsx}': ['eslint --fix', () => 'npm run test'],
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.9.0
20.16.0
Loading