Integrate the cosmos/tokenfactory module #1682
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: interchaintest-automerge | |
| on: | |
| pull_request_target: | |
| types: | |
| - labeled | |
| pull_request_review: | |
| types: | |
| - submitted | |
| check_suite: | |
| types: | |
| - completed | |
| jobs: | |
| automerge: | |
| runs-on: depot-ubuntu-22.04-4 | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| steps: | |
| - uses: dorny/paths-filter@v3 | |
| id: changes | |
| with: | |
| filters: | | |
| tests: | |
| - 'tests/interchain/**' | |
| src: | |
| - '**/*' | |
| - '!tests/interchain/**' | |
| predicate-quantifier: 'every' | |
| - if: steps.changes.outputs.tests == 'true' && steps.changes.outputs.src == 'false' | |
| id: automerge | |
| name: automerge tests | |
| uses: "pascalgn/[email protected]" | |
| env: | |
| GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
| MERGE_FORKS: "false" | |
| MERGE_METHOD: "squash" | |
| MERGE_REQUIRED_APPROVALS: "1" | |
| MERGE_LABELS: "automerge" |