Skip to content

Commit

Permalink
ci: add manual trigger for update constants action
Browse files Browse the repository at this point in the history
  • Loading branch information
hoonoh committed Dec 8, 2020
1 parent db6cd02 commit ce3cc67
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/update-constants.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,22 @@ name: update constants

on:
schedule:
- cron: '0 0 * * *'
- cron: "0 0 * * *"

workflow_dispatch:
inputs:
checkout_ref:
description: branch, tag or commit sha
required: true

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.inputs.checkout_ref }}

- name: Install dependencies
run: yarn --immutable
Expand Down

0 comments on commit ce3cc67

Please sign in to comment.