From 88ed27c1ea98fdad399dbfe3de6bfc88e20adf35 Mon Sep 17 00:00:00 2001 From: "awf-autoware-bot[bot]" <94889083+awf-autoware-bot[bot]@users.noreply.github.com> Date: Fri, 4 Feb 2022 09:24:21 +0000 Subject: [PATCH] chore: sync files (#19) * chore: sync files Signed-off-by: GitHub * Update sync-files.yaml Co-authored-by: kenji-miyake Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com> --- .github/sync-files.yaml | 1 - .github/workflows/automatic-rebase.yaml | 29 ------------------------- 2 files changed, 30 deletions(-) delete mode 100644 .github/workflows/automatic-rebase.yaml diff --git a/.github/sync-files.yaml b/.github/sync-files.yaml index 09810f4affe..7b4758b1c73 100644 --- a/.github/sync-files.yaml +++ b/.github/sync-files.yaml @@ -5,7 +5,6 @@ - source: DISCLAIMER.md - source: LICENSE - source: .github/dependabot.yaml - - source: .github/workflows/automatic-rebase.yaml - source: .github/workflows/pre-commit-optional.yaml - source: .github/workflows/semantic-pull-request.yaml - source: .github/workflows/spell-check.yaml diff --git a/.github/workflows/automatic-rebase.yaml b/.github/workflows/automatic-rebase.yaml deleted file mode 100644 index 8f6dc2b300e..00000000000 --- a/.github/workflows/automatic-rebase.yaml +++ /dev/null @@ -1,29 +0,0 @@ -name: automatic-rebase - -on: - issue_comment: - types: - - created - -jobs: - automatic-rebase: - if: ${{ github.event.issue.pull_request != '' && contains(github.event.comment.body, '/rebase') }} - runs-on: ubuntu-latest - steps: - - name: Generate token - id: generate-token - uses: tibdex/github-app-token@v1 - with: - app_id: ${{ secrets.APP_ID }} - private_key: ${{ secrets.PRIVATE_KEY }} - - - name: Check out repository - uses: actions/checkout@v2 - with: - token: ${{ steps.generate-token.outputs.token }} - fetch-depth: 0 - - - name: Automatic rebase - uses: cirrus-actions/rebase@1.5 - env: - GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }}