Merge pull request #3 from fiddlermikey/package-update #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: CI Testing Primary Language | |
on: [push] | |
jobs: | |
read_type: | |
runs-on: ubuntu-latest | |
name: Detect Primary Language | |
steps: | |
# To use this repository's private action, | |
# you must check out the repository | |
# Temporarily public, testing in personal Org | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.GH_PAT}} | |
- name: Read integration_type | |
id: read | |
uses: ./ # Uses an action in the root directory | |
with: | |
token: ${{ secrets.GH_PAT}} | |
- name: Display type | |
id: display | |
run: | | |
echo ${{ steps.read.outputs.primary_language}} | tee -a $GITHUB_STEP_SUMMARY | |