Skip to content

feat: rate limiting (#231) #1

feat: rate limiting (#231)

feat: rate limiting (#231) #1

Workflow file for this run

name: ⚡ Release
run-name: 'Release / ${{ github.event.head_commit.message }}'
on:
push:
branches:
- main
- master
paths-ignore:
- '.github/**'
- 'docs/**'
- 'Cargo.toml'
- 'Cargo.lock'
- 'README.md'
- 'CHANGELOG.md'
- 'LICENSE'
- 'justfile'
- 'rustfmt.toml'
- '.editorconfig'
- '.pre-commit-config.yaml'
- '.terraformignore'
- '.env.example'
concurrency: deploy
permissions:
contents: write
id-token: write
packages: write
checks: write
jobs:
paths_filter:
name: Paths Filter
runs-on:
group: ${{ vars.RUN_GROUP }}
steps:
- uses: actions/checkout@v3
- uses: WalletConnect/actions/github/paths-filter/@2.2.1
id: filter
outputs:
infra: ${{ steps.filter.outputs.infra }}
app: ${{ steps.filter.outputs.app }}
release:
name: Release
needs: [ paths_filter ]
uses: WalletConnect/ci_workflows/.github/workflows/[email protected]
secrets: inherit
with:
infra-changed: ${{ needs.paths_filter.outputs.infra == 'true' }}
app-changed: ${{ needs.paths_filter.outputs.app == 'true' }}
cd:
name: CD
needs: [ paths_filter, release ]
secrets: inherit
uses: ./.github/workflows/sub-cd.yml

Check failure on line 58 in .github/workflows/event_release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/event_release.yml

Invalid workflow file

error parsing called workflow ".github/workflows/event_release.yml" -> "./.github/workflows/sub-cd.yml" (source branch with sha:264aefee43a4038a2628ae2450310fa1d497021e) --> "WalletConnect/ci_workflows/.github/workflows/[email protected]" (source tag with sha:29c8de6da1b50bf878ae218d0793f97f03905b29) ---> "./.github/workflows/sub-infra-apply.yml" : failed to fetch workflow: workflow was not found.
with:
deploy-infra: ${{ needs.paths_filter.outputs.infra == 'true' }}
deploy-app: ${{ needs.paths_filter.outputs.app == 'true' }}
deploy-prod: true
version: ${{ needs.release.outputs.version }}