fix/request-rate-limit #247
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
on: | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
secrets: | |
name: Create env file with gh secrets | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
check-latest: true | |
- run: yarn install | |
- run: | | |
touch .env | |
echo SEED_LAW_COOK=${{ secrets.SEED_LAW_COOK }} >> .env | |
echo SEED_PEACE_GLOBE=${{ secrets.SEED_PEACE_GLOBE }} >> .env | |
echo SEED_SWALLOW_HEALTH=${{ secrets.SEED_SWALLOW_HEALTH }} >> .env |