Skip to content

Commit fb27d72

Browse files
committed
release v27
1 parent f631600 commit fb27d72

3 files changed

Lines changed: 19 additions & 16 deletions

File tree

.github/actions/test/action.yml

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -40,19 +40,22 @@ runs:
4040
shell: bash
4141
run: npm install -g npm@latest
4242

43-
- name: Create git tag
44-
if: ${{ steps.packageJson.outputs.local != steps.packageJson.outputs.remote && steps.packageJson.outputs.local != '' }}
45-
uses: actions/github-script@v8
46-
with:
47-
script: |
48-
const ref = `refs/tags/${require('package.json').version}`;
49-
console.log('creating tag…', ref);
50-
github.rest.git.createRef({
51-
owner: context.repo.owner,
52-
repo: context.repo.repo,
53-
ref,
54-
sha: context.sha
55-
});
43+
# disabled because it would require push-access to the repo, and we'd like to
44+
# keep things simple and avoid that.
45+
#
46+
# - name: Create git tag
47+
# if: ${{ steps.packageJson.outputs.local != steps.packageJson.outputs.remote && steps.packageJson.outputs.local != '' }}
48+
# uses: actions/github-script@v8
49+
# with:
50+
# script: |
51+
# const ref = `refs/tags/v${require('./package.json').version}`;
52+
# console.log('creating tag…', ref);
53+
# github.rest.git.createRef({
54+
# owner: context.repo.owner,
55+
# repo: context.repo.repo,
56+
# ref,
57+
# sha: context.sha
58+
# });
5659

5760
- name: Publish to npm
5861
if: ${{ steps.packageJson.outputs.local != steps.packageJson.outputs.remote && steps.packageJson.outputs.local != '' }}

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-config-kyle",
3-
"version": "26.2.2",
3+
"version": "27.0.0",
44
"author": "Kyle Hensel",
55
"description": "A sharable eslint config that I use",
66
"license": "MIT",

0 commit comments

Comments
 (0)