Add/faucet-tapplet@0.0.2 #43
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: Check the tapplet | |
on: | |
workflow_dispatch: | |
inputs: | |
package-name: | |
description: "Tapplet package name" | |
required: true | |
default: "tapp-example" | |
package-version: | |
description: "The tapplet package version" | |
required: true | |
default: "1.0.0" | |
pull_request: | |
branches: | |
- main | |
# Give the default GITHUB_TOKEN write permission to commit and push the changed files back to the repository. | |
permissions: | |
contents: write | |
jobs: | |
get-tapp-id: | |
runs-on: ubuntu-latest | |
outputs: | |
prefix: ${{ steps.var-setup.outputs.prefix }} | |
name: ${{ steps.var-setup.outputs.name }} | |
version: ${{ steps.var-setup.outputs.version }} | |
steps: | |
- name: Variables setup | |
id: var-setup | |
shell: bash | |
run: | | |
pr_name=${{ github.event.pull_request.title }} | |
IFS="/" read -r PREFIX NAME_VERSION <<< "$pr_name" | |
IFS="@" read -r NAME VERSION <<< "$NAME_VERSION" | |
echo "Prefix: $PREFIX" | |
echo "Name: $NAME" | |
echo "Version: $VERSION" | |
echo "prefix=${PREFIX}" >> $GITHUB_OUTPUT | |
echo "name=${NAME}" >> $GITHUB_OUTPUT | |
echo "version=${VERSION}" >> $GITHUB_OUTPUT | |
check-tapp: | |
runs-on: ubuntu-latest | |
outputs: | |
status: ${{steps.tapp-checker.outputs.status}} | |
needs: get-tapp-id | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Check tapplet package | |
id: tapp-checker | |
if: needs.get-tapp-id.outputs.prefix == 'Add' | |
uses: karczuRF/ga-test@main | |
with: | |
package-name: ${{needs.get-tapp-id.outputs.name}} | |
package-version: ${{needs.get-tapp-id.outputs.version}} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |