diff --git a/.github/sync.yml b/.github/sync.yml deleted file mode 100644 index a50205c5a..000000000 --- a/.github/sync.yml +++ /dev/null @@ -1,15 +0,0 @@ -discordeno/guide: - - source: website/ - dest: ./ - exclude: | - README.md - LICENSE - deleteOrphaned: true - -discordeno/template: - - source: template/ - dest: ./ - exclude: | - README.md - LICENSE - deleteOrphaned: true diff --git a/.github/workflows/lib-check.yml b/.github/workflows/lib-check.yml index 941756b02..d4d5330ca 100644 --- a/.github/workflows/lib-check.yml +++ b/.github/workflows/lib-check.yml @@ -2,9 +2,13 @@ name: Library Checks on: pull_request: + paths-ignore: + - 'website/**' push: branches: - main + paths-ignore: + - 'website/**' merge_group: jobs: diff --git a/.github/workflows/retryBenchmark.yml b/.github/workflows/retryBenchmark.yml index da790191f..6d1b7d8dc 100644 --- a/.github/workflows/retryBenchmark.yml +++ b/.github/workflows/retryBenchmark.yml @@ -2,9 +2,13 @@ name: Benchmark with retry on: pull_request: + paths-ignore: + - 'website/**' push: branches: - main + paths-ignore: + - 'website/**' jobs: benchmark-try-1: diff --git a/.github/workflows/sync_repos.yml b/.github/workflows/sync_repos.yml deleted file mode 100644 index 653f258ae..000000000 --- a/.github/workflows/sync_repos.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Sync Repos - -on: - push: - branches: - - main - paths: - - 'website/**' - # - "template/**" - -jobs: - sync: - runs-on: ubuntu-latest - steps: - - name: Checkout Repository - uses: actions/checkout@master - - name: Run GitHub File Sync - uses: BetaHuhn/repo-file-sync-action@v1 - with: - GH_PAT: ${{ secrets.REPO_SYNC }} - GIT_EMAIL: to@itoh.at - GIT_USERNAME: itohatweb - SKIP_PR: true - COMMIT_EACH_FILE: false