blob: 7c8c4e352441d2fe6a736418603ea7226254c1ba (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
name: Setup OpenVic Environment
description: Setup OpenVic Environment
runs:
using: "composite"
steps:
- name: Setup URL Environment
shell: bash
run: ${GITHUB_ACTION_PATH}/url-environment.sh
- name: Setup Commit Environment
uses: actions/github-script@v6
with:
script: require(`${process.env.GITHUB_ACTION_PATH}/commit-environment.js`)({github, context, core})
|