generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yaml
37 lines (35 loc) · 1.06 KB
/
action.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: typescript-action
description: Template of TypeScript Action
inputs:
path:
description: Path to the directory where the action is located
required: true
default: './'
runs:
using: 'composite'
steps:
- name: ffmpeg
uses: FedericoCarboni/setup-ffmpeg@v1
- name: 'Prepare Node'
uses: 'actions/setup-node@v3'
with:
node-version: 16
- run: ls -l
shell: bash
- name: 'Start Modify...'
run: node $GITHUB_ACTION_PATH/dist/index.js
shell: bash
- run: ls -l
shell: bash
- name: Extract branch name
shell: bash
run: echo "##[set-output name=branch;]$(git describe --always)"
id: extract_branch
- name: 'Create Pull Reqests...'
uses: peter-evans/create-pull-request@v4
with:
title: "[Jerm] Get Blessed."
branch: jerm/${{ steps.extract_branch.outputs.branch }}
commit-message: "feat(blessing): 🙏 🙇 blessed"
committer: GitHub <[email protected]>
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>