Skip to content

Commit 6bc14bf

Browse files
author
Johannes Schneider
committed
throwaway: disable reusable action for testing
1 parent a405f93 commit 6bc14bf

File tree

1 file changed

+33
-33
lines changed

1 file changed

+33
-33
lines changed

.github/workflows/perform-release.yml

+33-33
Original file line numberDiff line numberDiff line change
@@ -54,46 +54,46 @@ jobs:
5454
echo "RELEASE_NOTES_BRANCH_NAME=$RELEASE_NOTES_BRANCH" >> $GITHUB_OUTPUT
5555
env:
5656
GH_TOKEN: ${{ github.token }}
57-
#
58-
# check-prs:
59-
# name: "Check PRs"
60-
# runs-on: ubuntu-latest
61-
# needs: [ prerequisites ]
62-
# permissions:
63-
# pull-requests: read
64-
# strategy:
65-
# matrix:
66-
# task:
67-
# - {
68-
# "name": "Code PR",
69-
# "branch": ${{ needs.prerequisites.outputs.code-branch }},
70-
# "repo": ${{ github.repository }},
71-
# "token": ${{ github.token }}
72-
# }
73-
# - {
74-
# "name": "Docs PR",
75-
# "branch": ${{ needs.prerequisites.outputs.docs-branch }},
76-
# "repo": ${{ env.DOCS_REPO }},
77-
# "token": ${{ secrets.BOT_SDK_JS_FOR_DOCS_REPO_PR }}
78-
# }
79-
# - {
80-
# "name": "Release Notes PR",
81-
# "branch": ${{ needs.prerequisites.outputs.release-notes-branch }},
82-
# "repo": ${{ env.DOCS_REPO }},
83-
# "token": ${{ secrets.BOT_SDK_JS_FOR_DOCS_REPO_PR }}
84-
# }
85-
# steps:
86-
# - uses: actions/checkout@v4
87-
# with:
88-
# ref: ${{ needs.prerequisites.outputs.code-branch }}
57+
58+
check-prs:
59+
name: "Check PRs"
60+
runs-on: ubuntu-latest
61+
needs: [ prerequisites ]
62+
permissions:
63+
pull-requests: read
64+
strategy:
65+
matrix:
66+
task:
67+
- {
68+
"name": "Code PR",
69+
"branch": ${{ needs.prerequisites.outputs.code-branch }},
70+
"repo": ${{ github.repository }},
71+
"token": ${{ github.token }}
72+
}
73+
- {
74+
"name": "Docs PR",
75+
"branch": ${{ needs.prerequisites.outputs.docs-branch }},
76+
"repo": ${{ env.DOCS_REPO }},
77+
"token": ${{ secrets.BOT_SDK_JS_FOR_DOCS_REPO_PR }}
78+
}
79+
- {
80+
"name": "Release Notes PR",
81+
"branch": ${{ needs.prerequisites.outputs.release-notes-branch }},
82+
"repo": ${{ env.DOCS_REPO }},
83+
"token": ${{ secrets.BOT_SDK_JS_FOR_DOCS_REPO_PR }}
84+
}
85+
steps:
86+
- uses: actions/checkout@v4
87+
with:
88+
ref: ${{ needs.prerequisites.outputs.code-branch }}
8989
# - name: "Check Whether ${{ matrix.task.name }} Can Be Merged"
9090
# uses: ./.github/actions/pr-is-mergeable
9191
# with:
9292
# pr-ref: ${{ matrix.task.branch }}
9393
# repo: ${{ matrix.task.repo }}
9494
# token: ${{ matrix.task.token }}
9595
# fail-on-unmergeable: "true"
96-
#
96+
9797
release:
9898
name: "Release"
9999
needs: [ prerequisites ]

0 commit comments

Comments
 (0)