Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 2 additions & 4 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ on:
types:
- released


permissions:
contents: read

jobs:
prepare:
Expand All @@ -28,8 +29,6 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.ACCESS_TOKEN }}

- name: Find Latest Tag
id: latest_tag
Expand All @@ -55,7 +54,6 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.ACCESS_TOKEN }}

- name: Configurating Git
run: |
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/merge-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,3 @@ jobs:
with:
tag: ${{ needs.prepare.outputs.version }}
message: ${{ github.event.head_commit.message }}
github_token: ${{ secrets.ACCESS_TOKEN }}
10 changes: 0 additions & 10 deletions .github/workflows/merge-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,9 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.ACCESS_TOKEN }}

- uses: cycjimmy/semantic-release-action@v3
id: semantic
env:
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
with:
branch: master
dry_run: true
Expand All @@ -58,8 +54,6 @@ jobs:

steps:
- uses: ydataai/create-tag@v1.0.0
env:
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
with:
tag: ${{ needs.prepare.outputs.version }}
message: ${{ github.event.head_commit.message }}
Expand All @@ -77,13 +71,9 @@ jobs:
steps:
- name: Delete Previous drafts
uses: hugo19941994/delete-draft-releases@v1.0.1
env:
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}

- name: Create Draft Release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
with:
tag_name: ${{ needs.prepare.outputs.release }}
release_name: ${{ needs.prepare.outputs.release }}
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
- renovate/**
pull_request:

permissions:
contents: write

jobs:
commitlint:
name: Lint commit message
Expand Down Expand Up @@ -81,7 +84,6 @@ jobs:
if: always() && steps.commit.outputs.CHANGES == 'true'
with:
branch: ${{ github.head_ref }}
github_token: ${{ secrets.ACCESS_TOKEN }}

validate-docs:
name: Validate Docs
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ on:
types:
- released

permissions:
contents: write

jobs:
package:
Expand Down Expand Up @@ -66,7 +68,7 @@ jobs:
- uses: AButler/upload-release-assets@v3.0
with:
files: "dist/*"
repo-token: ${{ secrets.ACCESS_TOKEN }}
repo-token: ${{ secrets.GITHUB_TOKEN }}
release-tag: ${{ needs.package.outputs.version }}

publish-pypi:
Expand Down
31 changes: 0 additions & 31 deletions .github/workflows/sonarqube.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/triage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ jobs:
uses: andymckay/labeler@master
with:
add-labels: "needs-triage"
repo-token: ${{ secrets.ACCESS_TOKEN }}
repo-token: ${{ secrets.GITHUB_TOKEN }}
ignore-if-labeled: true
Loading