Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
frontend
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vicotor
frontend
Commits
6a4e8ecf
Commit
6a4e8ecf
authored
Jun 28, 2023
by
tom
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
try to run release workflow
parent
6935b98f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
10 deletions
+7
-10
label-released-issues.yml
.github/workflows/label-released-issues.yml
+1
-1
release.yml
.github/workflows/release.yml
+2
-2
update-project-cards.yml
.github/workflows/update-project-cards.yml
+4
-7
No files found.
.github/workflows/label-released-issues.yml
View file @
6a4e8ecf
...
...
@@ -115,7 +115,7 @@ jobs:
if (data.length > 0) {
core.info(`Found ${ data.length } closed issues with label ${ process.env.LABEL_NAME }. No further action required.`);
core.notice('Issues already labeled.')
core.notice('Issues already labeled.')
;
return data.length > 0;
}
...
...
.github/workflows/release.yml
View file @
6a4e8ecf
...
...
@@ -2,9 +2,9 @@ name: Release
on
:
# TODO @tom2drum: remove PR trigger
#
pull_request:
pull_request
:
release
:
types
:
[
released
,
prereleased
]
types
:
[
released
]
concurrency
:
group
:
${{ github.workflow }}
...
...
.github/workflows/update-project-cards.yml
View file @
6a4e8ecf
name
:
Update project cards for issues
on
:
pull_request
:
workflow_dispatch
:
inputs
:
project_name
:
...
...
@@ -55,10 +54,9 @@ jobs:
id
:
project_info
uses
:
actions/github-script@v6
env
:
# TODO @tom2drum: remove fallbacks for PR trigger
PROJECT_NAME
:
${{ github.event.pull_request && 'Front-end tasks' || github.event.inputs.project_name }}
FIELD_NAME
:
${{ github.event.pull_request && 'Status' || github.event.inputs.field_name }}
FIELD_VALUE
:
${{ github.event.pull_request && 'Released' || github.event.inputs.field_value }}
PROJECT_NAME
:
${{ github.event.inputs.project_name }}
FIELD_NAME
:
${{ github.event.inputs.field_name }}
FIELD_VALUE
:
${{ github.event.inputs.field_value }}
with
:
github-token
:
${{ secrets.BOT_LABEL_ISSUE_TOKEN }}
script
:
|
...
...
@@ -139,8 +137,7 @@ jobs:
id
:
items
uses
:
actions/github-script@v6
env
:
# TODO @tom2drum: remove fallbacks for PR trigger
ISSUES
:
${{ github.event.pull_request && '[900,903,899,912]' || github.event.inputs.issues }}
ISSUES
:
${{ github.event.inputs.issues }}
with
:
github-token
:
${{ secrets.BOT_LABEL_ISSUE_TOKEN }}
script
:
|
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment