Skip to content

Commit

Permalink
chore: testing
Browse files Browse the repository at this point in the history
  • Loading branch information
mikesmithgh committed Dec 11, 2023
1 parent 7820b6b commit e9e0bf9
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ on:
branches:
- 'main'
workflow_dispatch:
inputs:
build_id:
required: true
type: string
deploy_target:
required: true
type: string
perform_deploy:
required: true
type: boolean
default: true
schedule:
# daily 9AM EST
- cron: "0 14 * * *"
Expand All @@ -18,6 +29,11 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3

if: ${{ inputs.perform_deploy }}
steps:
- name: Testing1234
run: echo "build_id ${{ inputs.build_id }} deploy_target ${{ inputs.deploy_target }}"

- name: Setup Neovim nightly
uses: rhysd/action-setup-vim@v1
with:
Expand Down

0 comments on commit e9e0bf9

Please sign in to comment.