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
15 changes: 0 additions & 15 deletions .github/workflows/assign-tech-writers.yml

This file was deleted.

7 changes: 6 additions & 1 deletion .github/workflows/label-doc-changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,9 @@ jobs:
if: ${{steps.check-doc-changes.outputs.DOC_CHANGED == 'true'}}
with:
labels: doc-changes
github_token: ${{ secrets.OSS_BOT_GITHUB_TOKEN }}
github_token: ${{ github.token }}
- name: assign techwriters to PR
if: ${{steps.check-doc-changes.outputs.DOC_CHANGED == 'true'}}
uses: kentaro-m/[email protected]
with:
configuration-path: ".github/auto_assign.yml"
4 changes: 3 additions & 1 deletion .github/workflows/update-api-reports.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,15 @@ jobs:
name: Update API reports
runs-on: ubuntu-latest

permissions:
contents: write
steps:
- name: Checkout Repo
uses: actions/checkout@master
with:
# checkout HEAD commit instead of merge commit
ref: ${{ github.event.pull_request.head.sha }}
token: ${{ secrets.OSS_BOT_GITHUB_TOKEN }}
token: ${{ github.token }}
- name: Set up Node (14)
uses: actions/setup-node@v2
with:
Expand Down