fix: sismo-hackathons-participants group #1551
Workflow file for this run
This file contains 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: "Check new groups generation" | |
on: | |
pull_request: | |
jobs: | |
check-new-groups-generation: | |
if: (github.actor != 'sismobot') || contains(github.event.pull_request.title, 'ZK Badge') | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Install dependencies | |
shell: bash | |
run: | | |
yarn install --frozen-lockfile | |
- name: Check new groups generation | |
shell: bash | |
env: | |
DECENTRALIZED_SUBGRAPH_API_KEY: ${{ secrets.DECENTRALIZED_SUBGRAPH_API_KEY }} | |
GOOGLE_APPLICATION_CREDENTIALS: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS }} | |
SH_IGNORE_RESOLVING_ERRORS: "false" | |
HIVE_API_KEY: ${{ secrets.HIVE_API_KEY }} | |
JSON_RPC_URL: ${{ secrets.JSON_RPC_URL }} | |
TRANSPOSE_API_KEY: ${{ secrets.TRANSPOSE_API_KEY }} | |
FARCASTER_API_KEY: ${{ secrets.FARCASTER_API_KEY }} | |
ALCHEMY_API_KEY: ${{ secrets.ALCHEMY_API_KEY }} | |
DUNE_API_KEY: ${{ secrets.DUNE_API_KEY }} | |
GITCOIN_API_KEY: ${{ secrets.GITCOIN_API_KEY }} | |
ANKR_API_KEY: ${{ secrets.ANKR_API_KEY }} | |
SH_GITHUB_TOKEN: ${{ secrets.SH_GITHUB_TOKEN }} | |
TWITTER_API_KEY: ${{ secrets.TWITTER_API_KEY }} | |
TELEGRAM_API_HASH: ${{ secrets.TELEGRAM_API_HASH }} | |
TELEGRAM_API_ID: ${{ secrets.TELEGRAM_API_ID }} | |
TELEGRAM_BOT_TOKEN: ${{ secrets.TELEGRAM_BOT_TOKEN }} | |
TELEGRAM_BOT_SESSION: ${{ secrets.TELEGRAM_BOT_SESSION }} | |
ROCI_API_KEY: ${{ secrets.ROCI_API_KEY }} | |
run: | | |
yarn check-new-groups-generation |