FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
InputSystem/.github/workflows/pr-title.yml at develop · TLittleProgrammer/InputSystem · GitHub
TLittleProgrammer
/
InputSystem
Public
forked from
Unity-Technologies/InputSystem
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
InputSystem
/
.github
/
workflows
/
pr-title.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
36 lines (30 loc) · 1.19 KB
Breadcrumbs
InputSystem
/
.github
/
workflows
/
pr-title.yml
Copy path
File metadata and controls
36 lines (30 loc) · 1.19 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
#
This is a basic workflow to help you get started with Actions
name
:
CI
#
Controls when the workflow will run
on
:
#
Triggers the workflow on pull request creation and edit events but only for the "main" branch
pull_request
:
types
:
-
edited
-
opened
-
synchronize
branches
:
[ "develop" ]
#
Allows you to run this workflow manually from the Actions tab
workflow_dispatch
:
#
A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs
:
#
This workflow contains a single job called "build"
check-pr-title
:
#
The type of runner that the job will run on
runs-on
:
ubuntu-latest
#
Steps represent a sequence of tasks that will be executed as part of the job
steps
:
#
Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
-
uses
:
actions/checkout@v4
#
Runs a bash script from the specified working directory
-
name
:
Check PR Title begins with the required prefix
shell
:
bash
working-directory
:
.github/workflows
env
:
TITLE
:
${{github.event.pull_request.title}}
run
:
bash verify-pr-title-prefix.sh $TITLE "NEW:" "CHANGE:" "FIX:" "DOCS:" "RELEASE:"
Back
|
FazBrowse Home
|
New Git URL