From 46daafb56c98226a805f2301eaac9426154d0506 Mon Sep 17 00:00:00 2001 From: Dmytro Stebaiev Date: Mon, 28 Oct 2024 17:25:19 +0200 Subject: [PATCH 1/3] Bump version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 498ab03..fc2d97a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@skalenetwork/paymaster-interfaces", - "version": "1.0.0", + "version": "1.0.1", "description": "Definitions of interfaces needed to integrate with paymaster smart contract", "repository": "git@github.com:skalenetwork/paymaster-interfaces.git", "author": "Dmytro Stebaiev ", From 14cf92e5481524c8f75b8a054dafce9b68881e46 Mon Sep 17 00:00:00 2001 From: Dmytro Stebaiev Date: Mon, 28 Oct 2024 17:27:06 +0200 Subject: [PATCH 2/3] Fix release commit --- .github/workflows/publish.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 5f58b91..3c20f17 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -53,6 +53,7 @@ jobs: uses: ncipollo/release-action@v1 with: tag: ${{ env.VERSION }} + commit: ${{ github.sha }} prerelease: ${{ env.PRERELEASE }} clean: From a39d474c461c11b27bf44c21fe0d0c5a6d6ef0b8 Mon Sep 17 00:00:00 2001 From: Dmytro Stebaiev Date: Mon, 28 Oct 2024 17:31:48 +0200 Subject: [PATCH 3/3] Add checks --- .github/workflows/cla.yml | 38 +++++++++++++++++++++++++++++++ .github/workflows/issue_check.yml | 20 ++++++++++++++++ 2 files changed, 58 insertions(+) create mode 100644 .github/workflows/cla.yml create mode 100644 .github/workflows/issue_check.yml diff --git a/.github/workflows/cla.yml b/.github/workflows/cla.yml new file mode 100644 index 0000000..c5a3c1f --- /dev/null +++ b/.github/workflows/cla.yml @@ -0,0 +1,38 @@ +name: "cla" +on: + issue_comment: + types: [created] + pull_request_target: + types: [opened, closed, synchronize] + +jobs: + cla: + runs-on: ubuntu-latest + steps: + - name: "Get Team Members" + id: team + # github-script, v6.1.0 + uses: actions/github-script@7a5c598405937d486b0331594b5da2b14db670da + with: + github-token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} + result-encoding: string + script: | + const members = await github.paginate( + github.rest.orgs.listMembers, + { org: "skalenetwork" }, + ); + return members.map(m => m.login).join(","); + + - name: "CLA Assistant" + if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target' + # Beta Release, v2.1.3-beta + uses: cla-assistant/github-action@ba066dbae3769e2ce93ec8cfc4fdc51b9db628ba + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + PERSONAL_ACCESS_TOKEN : ${{ secrets.PERSONAL_ACCESS_TOKEN }} + with: + path-to-signatures: 'signatures/version1/cla.json' + path-to-document: 'https://skale.network/cla.txt' + remote-organization-name: 'skalenetwork' + remote-repository-name: cla-sigs + allowlist: '${{ steps.team.outputs.result }},*[bot]' diff --git a/.github/workflows/issue_check.yml b/.github/workflows/issue_check.yml new file mode 100644 index 0000000..34d35e7 --- /dev/null +++ b/.github/workflows/issue_check.yml @@ -0,0 +1,20 @@ +name: Get linked issues +on: + pull_request: + types: [ edited, synchronize, opened, reopened ] + +jobs: + check-linked-issues: + name: Check if pull request has linked issues + if: ${{ !startsWith(github.head_ref, 'dependabot/') }} + runs-on: ubuntu-latest + steps: + - name: Get issues + id: get-issues + uses: mondeja/pr-linked-issues-action@v2 + env: + GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} + - name: PR has not linked issues + if: join(steps.get-issues.outputs.issues) == '' + run: + exit 1