diff --git a/.github/actions/rollback_release/action.yml b/.github/actions/rollback_release/action.yml index 271fd42d3..bbe65c4fb 100644 --- a/.github/actions/rollback_release/action.yml +++ b/.github/actions/rollback_release/action.yml @@ -1,9 +1,5 @@ name: Rollback Release description: Takes the latest release and converts it to a draft and then kicks off a workflow dispatch to publish the previous release to AWS. -inputs: - token: - required: true - description: Github Password outputs: goodRelease: description: The tag of the release that we want to rollback to. diff --git a/.github/workflows/publish-docsite.yml b/.github/workflows/publish-docsite.yml index c19dc5b92..3f5d0a37e 100644 --- a/.github/workflows/publish-docsite.yml +++ b/.github/workflows/publish-docsite.yml @@ -176,4 +176,4 @@ jobs: id: rollback uses: ./.github/actions/rollback_release with: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.DX_GITHUB_TOKEN }} diff --git a/.github/workflows/rollback-release.yml b/.github/workflows/rollback-release.yml index 84c9b7f0c..cccfaf4e8 100644 --- a/.github/workflows/rollback-release.yml +++ b/.github/workflows/rollback-release.yml @@ -25,4 +25,4 @@ jobs: - name: Update the Bad Release to a Draft uses: ./.github/actions/rollback_release env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.DX_GITHUB_TOKEN }}