From 7410f47444d6ac3bb506a1c9a8849b9accd71df8 Mon Sep 17 00:00:00 2001 From: Jacob Wejendorp Date: Wed, 16 Feb 2022 10:44:58 +0100 Subject: [PATCH 1/4] chore: add catalog-info.yml and repofile --- Repofile | 9 +++++++++ catalog-info.yml | 15 +++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 Repofile create mode 100644 catalog-info.yml diff --git a/Repofile b/Repofile new file mode 100644 index 0000000000..330072c5b7 --- /dev/null +++ b/Repofile @@ -0,0 +1,9 @@ +{ + "checks": ["build"], + "maintainers": [ + "Developer productivity" + ], + "topics": [ + "github-action" + ] +} \ No newline at end of file diff --git a/catalog-info.yml b/catalog-info.yml new file mode 100644 index 0000000000..5962a414ee --- /dev/null +++ b/catalog-info.yml @@ -0,0 +1,15 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: create-pull-request + description: | + A GitHub action to create a pull request for changes to your repository in the actions workspace + annotations: + github.com/project-slug: Tradeshift/create-pull-request + tags: + - nodejs + - github-action +spec: + type: other + lifecycle: production + owner: developer-productivity From 4a65d1f0105a782dbbd6870883e5c844dd8e23d5 Mon Sep 17 00:00:00 2001 From: Jesper Terkelsen Date: Mon, 29 Aug 2022 12:35:20 +0200 Subject: [PATCH 2/4] chore: setup rebase action --- .github/workflows/rebase.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/rebase.yml diff --git a/.github/workflows/rebase.yml b/.github/workflows/rebase.yml new file mode 100644 index 0000000000..126f959358 --- /dev/null +++ b/.github/workflows/rebase.yml @@ -0,0 +1,21 @@ +name: Rebase Upstream +on: + schedule: + - cron: "0 0 * * 0" # run once a week + workflow_dispatch: # run manually + +jobs: + sync: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + with: + fetch-depth: 0 # fetching all history so i can rebase + token: ${{ secrets.GH_TOKEN }} + - name: Configure git for tradeshiftci + uses: tradeshift/actions-git/configure-from-gpg-key@v1 + with: + gpg-key: ${{ secrets.TRADESHIFTCI_GPG_KEY }} + - uses: tradeshift/rebase-upstream-action@master + with: + branch: main From a9c8e70ebabbbd428a3a3cb120daff750f7747ed Mon Sep 17 00:00:00 2001 From: Celio Ferreira Date: Wed, 22 Feb 2023 10:10:59 +0100 Subject: [PATCH 3/4] chore: change of ownership from developer-productivity to sre This PR changes the ownership of this repo to SRE, as the developer productivity team doesn't exist anymore. --- catalog-info.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catalog-info.yml b/catalog-info.yml index 5962a414ee..e2d2489eac 100644 --- a/catalog-info.yml +++ b/catalog-info.yml @@ -12,4 +12,4 @@ metadata: spec: type: other lifecycle: production - owner: developer-productivity + owner: sre From 3a3918bc464a7af996949a7638427dce0b6df3a7 Mon Sep 17 00:00:00 2001 From: "tradeshift-renovate[bot]" <121954292+tradeshift-renovate[bot]@users.noreply.github.com> Date: Sun, 23 Nov 2025 00:31:30 +0000 Subject: [PATCH 4/4] chore(deps): update actions/checkout action to v6 --- .github/workflows/ci.yml | 6 +++--- .github/workflows/cpr-example-command.yml | 2 +- .github/workflows/update-major-version.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eae5656aed..143f0e4ee4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-node@v6 with: node-version: 20.x @@ -46,7 +46,7 @@ jobs: matrix: target: [built, committed] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: ref: main - if: matrix.target == 'built' || github.event_name == 'pull_request' @@ -118,7 +118,7 @@ jobs: needs: [test] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/download-artifact@v6 with: name: dist diff --git a/.github/workflows/cpr-example-command.yml b/.github/workflows/cpr-example-command.yml index c05eb9d672..c9ef268190 100644 --- a/.github/workflows/cpr-example-command.yml +++ b/.github/workflows/cpr-example-command.yml @@ -6,7 +6,7 @@ jobs: createPullRequest: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Make changes to pull request run: date +%s > report.txt diff --git a/.github/workflows/update-major-version.yml b/.github/workflows/update-major-version.yml index 9182f5db05..3cf86d5f95 100644 --- a/.github/workflows/update-major-version.yml +++ b/.github/workflows/update-major-version.yml @@ -18,7 +18,7 @@ jobs: tag: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: token: ${{ secrets.ACTIONS_BOT_TOKEN }} fetch-depth: 0