test no date #16
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: Schedule Job using Carbon Aware API | |
on: | |
push: | |
branches: | |
- gh-pages | |
jobs: | |
schedule_job: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Schedule job using Carbon Aware API | |
uses: jhcoll/carbon-aware-schedule-action@main | |
with: | |
# Region to check carbon intensity for - can be any azure region - however if using github hosted runners will be one of the following - 'eastus, eastus2, westus2, centralus, southcentralus' | |
region: 'eastus' | |
# path to template job to be scheduled | |
template-paths: 'templates/template.yml, templates/template2.yml' | |
# Time to check until - In format YYYY-MM-DDThh:mm:ssZ | |
# end-time: '2023-11-17T11:51:00Z' # Optional - defaults to +24hr | |
# Estimated job length in minutes | |
estimated-job-length: '10' # Optional - defaults to 10 | |
# Output path for scheduled jobs | |
output-path: '.github/workflows/' # Optional - defaults to ".github/workflows/" | |
- name: get changes | |
run: | | |
git status |