From 590b918fb94893dfa05355881b26e4840166f3d2 Mon Sep 17 00:00:00 2001 From: Jacob Wejendorp Date: Wed, 16 Feb 2022 10:44:58 +0100 Subject: [PATCH 1/5] 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 cb8351a74a9c1d0111b8809773c60a68455ca849 Mon Sep 17 00:00:00 2001 From: Jesper Terkelsen Date: Mon, 29 Aug 2022 12:35:20 +0200 Subject: [PATCH 2/5] 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 828061c792c2b9b0ff93ec4910670df7798a16ee Mon Sep 17 00:00:00 2001 From: Celio Ferreira Date: Wed, 22 Feb 2023 10:10:59 +0100 Subject: [PATCH 3/5] 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 899a436025ec1a9f1a8369d34292245a5d26441f Mon Sep 17 00:00:00 2001 From: "tradeshift-renovate[bot]" <121954292+tradeshift-renovate[bot]@users.noreply.github.com> Date: Tue, 4 Jun 2024 12:08:42 +0000 Subject: [PATCH 4/5] chore(deps): update dependency @types/node to ^18.19.34 --- package-lock.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package-lock.json b/package-lock.json index 0ad34d28be..3f61fab56c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1556,6 +1556,7 @@ "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.67.tgz", "integrity": "sha512-wI8uHusga+0ZugNp0Ol/3BqQfEcCCNfojtO6Oou9iVNGPTL6QNSdnUdqq85fRgIorLhLMuPIKpsN98QE9Nh+KQ==", "dev": true, + "license": "MIT", "dependencies": { "undici-types": "~5.26.4" } From 87966004a497327d55714024b6ecaa4c75fcc152 Mon Sep 17 00:00:00 2001 From: "tradeshift-renovate[bot]" <121954292+tradeshift-renovate[bot]@users.noreply.github.com> Date: Mon, 16 Dec 2024 13:18:13 +0000 Subject: [PATCH 5/5] chore(deps): update dependency eslint to v9 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e2c395d05e..81af374b46 100644 --- a/package.json +++ b/package.json @@ -45,7 +45,7 @@ "@typescript-eslint/eslint-plugin": "^7.18.0", "@typescript-eslint/parser": "^7.18.0", "@vercel/ncc": "^0.38.3", - "eslint": "^8.57.1", + "eslint": "^9.17.0", "eslint-import-resolver-typescript": "^3.7.0", "eslint-plugin-github": "^4.10.2", "eslint-plugin-import": "^2.31.0",