From 2bacabf80b3fdfed691aea62cd4ce02e4cde3a7a 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 1807e9bbcab424fcedd04d0fbd0f691f2533e144 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 7155e24d4ec62eebdcc5cfe02a06cd6d005a2f76 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 1d137d9e7aee5099eea4438ccde0ee9a1fda65ed Mon Sep 17 00:00:00 2001 From: "tradeshift-renovate[bot]" <121954292+tradeshift-renovate[bot]@users.noreply.github.com> Date: Mon, 4 May 2026 07:05:11 +0000 Subject: [PATCH 4/4] chore(deps): update dependency undici to v8 --- package-lock.json | 10 +++++----- package.json | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index 6441497124..9b0cd22ad2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -40,7 +40,7 @@ "prettier": "^3.8.3", "ts-jest": "^29.4.9", "typescript": "^5.9.3", - "undici": "^6.25.0" + "undici": "^8.2.0" }, "engines": { "node": ">=24.4.0" @@ -8947,13 +8947,13 @@ } }, "node_modules/undici": { - "version": "6.25.0", - "resolved": "https://registry.npmjs.org/undici/-/undici-6.25.0.tgz", - "integrity": "sha512-ZgpWDC5gmNiuY9CnLVXEH8rl50xhRCuLNA97fAUnKi8RRuV4E6KG31pDTsLVUKnohJE0I3XDrTeEydAXRw47xg==", + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/undici/-/undici-8.2.0.tgz", + "integrity": "sha512-Z+4Hx9GE26Lh9Upwfnc8C7SsrpBPGaM/Gm6kMFtiG7c+5IvQKlXi/t+9x9DrrCh29cww5TSP9YdVaBcnLDs5fQ==", "dev": true, "license": "MIT", "engines": { - "node": ">=18.17" + "node": ">=22.19.0" } }, "node_modules/undici-types": { diff --git a/package.json b/package.json index 94d4667b93..1f09d61a28 100644 --- a/package.json +++ b/package.json @@ -63,6 +63,6 @@ "prettier": "^3.8.3", "ts-jest": "^29.4.9", "typescript": "^5.9.3", - "undici": "^6.25.0" + "undici": "^8.2.0" } }