Majors. #148
Workflow file for this run
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 / Test | |
on: | |
push: | |
paths-ignore: | |
- '*/**.md' | |
branches: | |
- "**" | |
workflow_dispatch: | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- name: Production Build | |
run: | | |
pnpm i; pnpm run build | |
pr-test: | |
if: github.event_name == 'pull_request' | |
needs: [build-and-test] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Test | |
id: new-issue | |
uses: ./ | |
with: | |
github-token: ${{ secrets.BOT_TOKEN || secrets.GITHUB_TOKEN }} | |
title: "Automated Pull Request from: ${{ github.head_ref }}" | |
body: | | |
The `auto-issue` Action is functional locally here. | |
Good Day! | |
labels: test,automated | |
assignees: TheHamsterBot | |
- name: View Action Outputs | |
run: | | |
echo "## Auto Issue Action Summary " >> $GITHUB_STEP_SUMMARY | |
echo "NUMBER - ${{ steps.new-issue.outputs.number }} " >> $GITHUB_STEP_SUMMARY | |
echo "URL - ${{ steps.new-issue.outputs.url }} " >> $GITHUB_STEP_SUMMARY | |
echo "JSON - ${{ steps.new-issue.outputs.json }} " >> $GITHUB_STEP_SUMMARY | |
echo '${{ steps.new-issue.outputs.json }}' | jq | |
echo '${{ steps.new-issue.outputs.json }}' | jq .state | |
echo '${{ steps.new-issue.outputs.json }}' | jq .labels[].name | |
push-test: | |
if: github.event_name == 'push' | |
needs: [build-and-test] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
trigger-test: | |
if: github.event_name == 'workflow_dispatch' || github.ref_name == 'master' | |
runs-on: ubuntu-latest | |
steps: | |
- run: | | |
curl --silent --show-error \ | |
--request POST \ | |
--header "Authorization: token ${{ secrets.GITHUB_TOKEN || secrets.BOT_TOKEN }}" \ | |
--header "Accept: application/vnd.github.v3+json" \ | |
--url "https://api.github.com/repos/dacbd/err/dispatches" \ | |
--data '{"event_type":"basic", "client_payload": {"ref_name":"${{ github.ref_name }}"}}' |