From 5d302a46f415de26be60c8440346496f7be2f30d Mon Sep 17 00:00:00 2001 From: ismay Date: Mon, 8 Jul 2024 17:44:46 +0200 Subject: [PATCH] ci: move upstream workflows --- .github/workflows/comment-and-close.yml | 2 +- .github/workflows/deploy-pr.yml | 2 +- .github/workflows/deploy-production.yml | 2 +- .github/workflows/lint-pr-title.yml | 2 +- .github/workflows/test-and-release.yml | 10 +++++----- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/comment-and-close.yml b/.github/workflows/comment-and-close.yml index 8928b036..25e527b5 100644 --- a/.github/workflows/comment-and-close.yml +++ b/.github/workflows/comment-and-close.yml @@ -6,5 +6,5 @@ on: jobs: comment-and-close: - uses: dhis2/workflows-test/.github/workflows/comment-and-close.yml@v1 + uses: dhis2/workflows-platform/.github/workflows/comment-and-close.yml@v1 if: !contains(github.event.issues.sender.login , fromJson('["dhis2-bot", "kodiakhq", "dependabot"]')) diff --git a/.github/workflows/deploy-pr.yml b/.github/workflows/deploy-pr.yml index 7797be5c..56e425a3 100644 --- a/.github/workflows/deploy-pr.yml +++ b/.github/workflows/deploy-pr.yml @@ -9,6 +9,6 @@ concurrency: jobs: deploy: - uses: dhis2/workflows-test/.github/workflows/deploy-pr.yml@v1 + uses: dhis2/workflows-platform/.github/workflows/deploy-pr.yml@v1 if: '!github.event.pull_request.head.repo.fork' secrets: inherit diff --git a/.github/workflows/deploy-production.yml b/.github/workflows/deploy-production.yml index d780ef48..aacbb1a0 100644 --- a/.github/workflows/deploy-production.yml +++ b/.github/workflows/deploy-production.yml @@ -11,7 +11,7 @@ concurrency: jobs: deploy: - uses: dhis2/workflows-test/.github/workflows/deploy-production.yml@v1 + uses: dhis2/workflows-platform/.github/workflows/deploy-production.yml@v1 secrets: inherit with: branch: master diff --git a/.github/workflows/lint-pr-title.yml b/.github/workflows/lint-pr-title.yml index d520a8c0..2e99c77c 100644 --- a/.github/workflows/lint-pr-title.yml +++ b/.github/workflows/lint-pr-title.yml @@ -10,4 +10,4 @@ concurrency: jobs: lint-pr-title: - uses: dhis2/workflows-test/.github/workflows/lint-pr-title.yml@v1 + uses: dhis2/workflows-platform/.github/workflows/lint-pr-title.yml@v1 diff --git a/.github/workflows/test-and-release.yml b/.github/workflows/test-and-release.yml index 35530b69..7e6ebdc8 100644 --- a/.github/workflows/test-and-release.yml +++ b/.github/workflows/test-and-release.yml @@ -9,19 +9,19 @@ concurrency: jobs: lint-commits: - uses: dhis2/workflows-test/.github/workflows/lint-commits.yml@v1 + uses: dhis2/workflows-platform/.github/workflows/lint-commits.yml@v1 lint: - uses: dhis2/workflows-test/.github/workflows/lint.yml@v1 + uses: dhis2/workflows-platform/.github/workflows/lint.yml@v1 test: - uses: dhis2/workflows-test/.github/workflows/test.yml@v1 + uses: dhis2/workflows-platform/.github/workflows/test.yml@v1 e2e: - uses: dhis2/workflows-test/.github/workflows/e2e.yml@v1 + uses: dhis2/workflows-platform/.github/workflows/e2e.yml@v1 # Skips forks and dependabot PRs if: '!github.event.push.repository.fork' secrets: inherit release: needs: [lint, test, e2e] - uses: dhis2/workflows-test/.github/workflows/release.yml@v1 + uses: dhis2/workflows-platform/.github/workflows/release.yml@v1 # Skips forks and dependabot PRs if: '!github.event.push.repository.fork' secrets: inherit