diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index a5acc4459..bf6349392 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -6,9 +6,9 @@ Link to any discussion, related issues and bug reports to give the context to he Link to existing ADR (Architecture Decision Record), if any. If relevant, describe other approaches explored and the selected approach. Documenting why the methods were not selected will create a knowledge base for future reference, helping prevent others from revisiting less optimal ideas. ### Checklist: -- [] My PR follows the [contribution guidelines](https://github.com/input-output-hk/atala-prism-wallet-sdk-kmm/blob/main/CONTRIBUTING.md) of this project -- [] My PR is free of third-party dependencies that don't comply with the [Allowlist](https://toc.hyperledger.org/governing-documents/allowed-third-party-license-policy.html#approved-licenses-for-allowlist) -- [] I have commented my code, particularly in hard-to-understand areas -- [] I have made corresponding changes to the documentation -- [] I have added tests that prove my fix is effective or that my feature works -- [] I have checked the PR title to follow the [conventional commit specification](https://www.conventionalcommits.org/en/v1.0.0/) \ No newline at end of file +- [ ] My PR follows the [contribution guidelines](https://github.com/input-output-hk/atala-prism-wallet-sdk-kmm/blob/main/CONTRIBUTING.md) of this project +- [ ] My PR is free of third-party dependencies that don't comply with the [Allowlist](https://toc.hyperledger.org/governing-documents/allowed-third-party-license-policy.html#approved-licenses-for-allowlist) +- [ ] I have commented my code, particularly in hard-to-understand areas +- [ ] I have made corresponding changes to the documentation +- [ ] I have added tests that prove my fix is effective or that my feature works +- [ ] I have checked the PR title to follow the [conventional commit specification](https://www.conventionalcommits.org/en/v1.0.0/) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 7d2097eb1..d6c0e7e42 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -6,14 +6,14 @@ defaults: shell: bash concurrency: - group: ${{ github.head_ref }}${{ github.ref }} + group: "${{ github.head_ref }}${{ github.ref }}" cancel-in-progress: true env: JAVA_VERSION: 17 NODEJS_VERSION: 16.17.0 - ATALA_GITHUB_ACTOR: ${{ secrets.ATALA_GITHUB_ACTOR }} - ATALA_GITHUB_TOKEN: ${{ secrets.ATALA_GITHUB_TOKEN }} + ATALA_GITHUB_ACTOR: ${{ secrets.GITHUB_TOKEN }} + ATALA_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} on: push: diff --git a/tests/end-to-end/build.gradle.kts b/tests/end-to-end/build.gradle.kts index 804c54740..d8bc6de39 100644 --- a/tests/end-to-end/build.gradle.kts +++ b/tests/end-to-end/build.gradle.kts @@ -19,7 +19,7 @@ repositories { } } maven { - url = uri("https://maven.pkg.github.com/hyperledger-labs/open-enterprise-agent/") + url = uri("https://maven.pkg.github.com/hyperledger/identus-cloud-agent/") credentials { username = System.getenv("ATALA_GITHUB_ACTOR") password = System.getenv("ATALA_GITHUB_TOKEN")