FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
wordpress-develop/.github/workflows/check-built-files.yml at trunk · ericmann/wordpress-develop · GitHub
ericmann
/
wordpress-develop
Public
forked from
WordPress/wordpress-develop
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
wordpress-develop
/
.github
/
workflows
/
check-built-files.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
54 lines (50 loc) · 1.94 KB
Breadcrumbs
wordpress-develop
/
.github
/
workflows
/
check-built-files.yml
Copy path
File metadata and controls
54 lines (50 loc) · 1.94 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#
Checks for uncommitted changes to built files in pull requests.
name
:
Check Built Files (PRs)
on
:
#
Because all commits happen through SVN and should always be manually reviewed by a committer, this workflow only
#
runs for pull requests.
#
#
Other workflows that run for the push event will detect changes to versioned files and fail.
pull_request
:
branches
:
-
trunk
-
'
6.[8-9]
'
-
'
[7-9].[0-9]
'
paths
:
#
Any change to a CSS, JavaScript, JSON, or SASS file should run checks.
-
'
**.css
'
-
'
**.js
'
-
'
**.json
'
-
'
**.sass
'
#
These files configure npm and the task runner. Changes could affect the outcome.
-
'
package*.json
'
-
'
.npmrc
'
-
'
.nvmrc
'
-
'
Gruntfile.js
'
-
'
webpack.config.js
'
-
'
tools/gutenberg/**
'
-
'
tools/vendors/**
'
-
'
tools/webpack/**
'
#
These files configure Composer. Changes could affect the outcome.
-
'
composer.*
'
#
Confirm any changes to relevant workflow files.
-
'
.github/workflows/check-built-files.yml
'
-
'
.github/workflows/reusable-check-built-files.yml
'
#
Changes to the default themes should be handled by the themes workflows.
-
'
!src/wp-content/themes/twenty**
'
#
Cancels all previous workflow runs for pull requests that have not completed.
concurrency
:
#
The concurrency group contains the workflow name and the branch name for pull requests
#
or the commit hash for any other events.
group
:
${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
cancel-in-progress
:
true
#
Disable permissions for all available scopes by default.
#
Any needed permissions should be configured at the job level.
permissions
:
{}
jobs
:
check-for-built-file-changes
:
name
:
Check built files
if
:
${{ github.repository == 'wordpress/wordpress-develop' }}
uses
:
./.github/workflows/reusable-check-built-files.yml
permissions
:
contents
:
read
Back
|
FazBrowse Home
|
New Git URL