Skip to content

Commit 6101a58

Browse files
chore(workflows): remove flow GH token from workflows
This pull request makes a minor update to the GitHub Actions workflows for package management by removing the use of a custom GitHub token during the checkout step. This change simplifies the workflow configuration and relies on the default token provided by GitHub Actions. - Workflow configuration simplification: * Removed the `token: ${{ secrets.FLOW_GITHUB_TOKEN }}` configuration from the `actions/checkout@v4` step in the `.github/workflows/deprecate-package.yml`, `.github/workflows/publish-package.yml`, and `.github/workflows/unpublish-package.yml` files. [[1]](diffhunk://#diff-8667400b82f8a025158dd4bb81992ac9f2a52d1c2d0c5b0b3bcf63bbc96cf03eL26-L27) [[2]](diffhunk://#diff-76272691d414169ea851c113f750e3f9638354d7e4473ad7131d69ec1fcea201L24-L25) [[3]](diffhunk://#diff-21fcece5a73a9ae7591b0fa175751326c600fa9415002a28b9de4e92e40615f5L23-L24)
1 parent ad21c2e commit 6101a58

File tree

3 files changed

+0
-6
lines changed

3 files changed

+0
-6
lines changed

.github/workflows/deprecate-package.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ jobs:
2323

2424
steps:
2525
- uses: actions/checkout@v4
26-
with:
27-
token: ${{ secrets.FLOW_GITHUB_TOKEN }}
2826

2927
- name: Enable Corepack
3028
run: corepack enable

.github/workflows/publish-package.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ jobs:
2121

2222
steps:
2323
- uses: actions/checkout@v4
24-
with:
25-
token: ${{ secrets.FLOW_GITHUB_TOKEN }}
2624

2725
- name: Enable Corepack
2826
run: corepack enable

.github/workflows/unpublish-package.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ jobs:
2020

2121
steps:
2222
- uses: actions/checkout@v4
23-
with:
24-
token: ${{ secrets.FLOW_GITHUB_TOKEN }}
2523

2624
- name: Enable Corepack
2725
run: corepack enable

0 commit comments

Comments
 (0)