diff --git a/.github/pipeline-version b/.github/pipeline-version index 88c5fb8..bc80560 100644 --- a/.github/pipeline-version +++ b/.github/pipeline-version @@ -1 +1 @@ -1.4.0 +1.5.0 diff --git a/.github/workflows/synchronize-labels.yml b/.github/workflows/synchronize-labels.yml index d3de7ee..598e7ad 100644 --- a/.github/workflows/synchronize-labels.yml +++ b/.github/workflows/synchronize-labels.yml @@ -14,4 +14,4 @@ jobs: - uses: actions/checkout@v2 - uses: micnncim/action-label-syncer@v1 env: - GITHUB_TOKEN: ${{ secrets.IMPLEMENTATION_GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/update-draft-release.yml b/.github/workflows/update-draft-release.yml index 0726d99..a7ffc45 100644 --- a/.github/workflows/update-draft-release.yml +++ b/.github/workflows/update-draft-release.yml @@ -12,4 +12,4 @@ jobs: - id: release-drafter uses: release-drafter/release-drafter@v5 env: - GITHUB_TOKEN: ${{ secrets.IMPLEMENTATION_GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/update-pipeline.yml b/.github/workflows/update-pipeline.yml index e280963..88bda42 100644 --- a/.github/workflows/update-pipeline.yml +++ b/.github/workflows/update-pipeline.yml @@ -56,7 +56,7 @@ jobs: echo "::set-output name=release-notes::${RELEASE_NOTES//$'\n'/%0A}" env: DESCRIPTOR: .github/pipeline-descriptor.yml - GITHUB_TOKEN: ${{ secrets.IMPLEMENTATION_GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - uses: peter-evans/create-pull-request@v3 with: body: |- @@ -75,4 +75,4 @@ jobs: labels: semver:patch, type:task signoff: true title: Bump pipeline from ${{ steps.pipeline.outputs.old-version }} to ${{ steps.pipeline.outputs.new-version }} - token: ${{ secrets.IMPLEMENTATION_GITHUB_TOKEN }} + token: ${{ secrets.GITHUB_TOKEN }}