Skip to content
This repository has been archived by the owner on Jun 7, 2024. It is now read-only.

Add renovate.json

Add renovate.json #2

Workflow file for this run

# .github/workflows/test_action.yaml
name: Test Action
on: [push]
jobs:
get-num-square:
runs-on: ubuntu-latest
name: Returns the number square
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Fetch num squared
id: get_square
uses: ./ # Uses an action in the root directory
# or use a released GitHub Action
# uses: shipyard/github-action/fetch-shipyard-env@1.0.0
with:
num: 11
- name: Print the square
run: echo "${{ steps.get_square.outputs.num_squared }}"