summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authormisskey-release-bot[bot] <157398866+misskey-release-bot[bot]@users.noreply.github.com>2024-10-09 05:17:29 +0000
committerGitHub <noreply@github.com>2024-10-09 05:17:29 +0000
commit2518cf36d0e1ae594a527087704ee8bce51013bb (patch)
tree957d293824733660cad00bd8f3f5745d744179c3 /.github
parentMerge pull request #14580 from misskey-dev/develop (diff)
parentRelease: 2024.10.0 (diff)
downloadmisskey-2518cf36d0e1ae594a527087704ee8bce51013bb.tar.gz
misskey-2518cf36d0e1ae594a527087704ee8bce51013bb.tar.bz2
misskey-2518cf36d0e1ae594a527087704ee8bce51013bb.zip
Merge pull request #14675 from misskey-dev/develop
Release: 2024.10.0
Diffstat (limited to '.github')
-rw-r--r--.github/misskey/test.yml2
-rw-r--r--.github/workflows/check-misskey-js-autogen.yml8
-rw-r--r--.github/workflows/lint.yml2
3 files changed, 10 insertions, 2 deletions
diff --git a/.github/misskey/test.yml b/.github/misskey/test.yml
index 7a4aa4ae6c..3c807e8b9e 100644
--- a/.github/misskey/test.yml
+++ b/.github/misskey/test.yml
@@ -1,5 +1,7 @@
url: 'http://misskey.local'
+setupPassword: example_password_please_change_this_or_you_will_get_hacked
+
# ローカルでテストするときにポートを被らないようにするためデフォルトのものとは変える(以下同じ)
port: 61812
diff --git a/.github/workflows/check-misskey-js-autogen.yml b/.github/workflows/check-misskey-js-autogen.yml
index 5afd7d2714..f26c9a4d45 100644
--- a/.github/workflows/check-misskey-js-autogen.yml
+++ b/.github/workflows/check-misskey-js-autogen.yml
@@ -21,6 +21,7 @@ jobs:
uses: actions/checkout@v4.1.1
with:
submodules: true
+ persist-credentials: false
ref: refs/pull/${{ github.event.pull_request.number }}/merge
- name: setup pnpm
@@ -57,7 +58,7 @@ jobs:
name: generated-misskey-js
path: packages/misskey-js/generator/built/autogen
- # pull_request_target safety: permissions: read-all, and there are no secrets used in this job
+ # pull_request_target safety: permissions: read-all, and no user codes are executed
get-actual-misskey-js:
runs-on: ubuntu-latest
permissions:
@@ -68,6 +69,7 @@ jobs:
uses: actions/checkout@v4.1.1
with:
submodules: true
+ persist-credentials: false
ref: refs/pull/${{ github.event.pull_request.number }}/merge
- name: Upload From Merged
@@ -131,3 +133,7 @@ jobs:
mode: delete
message: "Thank you!"
create_if_not_exists: false
+
+ - name: Make failure if changes are detected
+ if: steps.check-changes.outputs.changes == 'true'
+ run: exit 1
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index 07d9af12f7..90eb268dda 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -75,7 +75,7 @@ jobs:
- run: corepack enable
- run: pnpm i --frozen-lockfile
- name: Restore eslint cache
- uses: actions/cache@v4.0.2
+ uses: actions/cache@v4.1.0
with:
path: ${{ env.eslint-cache-path }}
key: eslint-${{ env.eslint-cache-version }}-${{ matrix.workspace }}-${{ hashFiles('**/pnpm-lock.yaml') }}-${{ github.ref_name }}-${{ github.sha }}