From b565bac87f39cc4f0d1bab9689838c4b2d6f51b6 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 a85beb1cb81c8ce4db3ae732bffa81ab53790cd2 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 b45ecf6e060ef19d42d8e243214b5e62a193adfa 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 92896dd1cd69fbf84e90f0228c3c3da13b18ff2e Mon Sep 17 00:00:00 2001 From: "tradeshift-renovate[bot]" <121954292+tradeshift-renovate[bot]@users.noreply.github.com> Date: Sun, 3 Aug 2025 00:33:06 +0000 Subject: [PATCH 4/4] fix(deps): update dependency node-fetch-native to ^1.6.7 --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 4e887da1b3..3cc11fe542 100644 --- a/package-lock.json +++ b/package-lock.json @@ -15,7 +15,7 @@ "@octokit/plugin-paginate-rest": "^11.6.0", "@octokit/plugin-rest-endpoint-methods": "^13.5.0", "@octokit/plugin-throttling": "^9.6.1", - "node-fetch-native": "^1.6.6", + "node-fetch-native": "^1.6.7", "p-limit": "^6.2.0", "uuid": "^9.0.1" }, @@ -6856,9 +6856,9 @@ "dev": true }, "node_modules/node-fetch-native": { - "version": "1.6.6", - "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.6.6.tgz", - "integrity": "sha512-8Mc2HhqPdlIfedsuZoc3yioPuzp6b+L5jRCRY1QzuWZh2EGJVQrGppC6V6cF0bLdbW0+O2YpqCA25aF/1lvipQ==", + "version": "1.6.7", + "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.6.7.tgz", + "integrity": "sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==", "license": "MIT" }, "node_modules/node-int64": { diff --git a/package.json b/package.json index 56c3de15ab..d3336896ba 100644 --- a/package.json +++ b/package.json @@ -35,7 +35,7 @@ "@octokit/plugin-paginate-rest": "^11.6.0", "@octokit/plugin-rest-endpoint-methods": "^13.5.0", "@octokit/plugin-throttling": "^9.6.1", - "node-fetch-native": "^1.6.6", + "node-fetch-native": "^1.6.7", "p-limit": "^6.2.0", "uuid": "^9.0.1" },