Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Community Documentation
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Bio-IT
Community Documentation
Commits
397e4a69
Unverified
Commit
397e4a69
authored
4 years ago
by
Silvio Giebl
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' into navigation-improvements-and-search-sections
parents
1cf7d5ab
171ff71a
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.github/release-drafter.yml
+30
-0
30 additions, 0 deletions
.github/release-drafter.yml
.github/workflows/ci-master.yml
+2
-2
2 additions, 2 deletions
.github/workflows/ci-master.yml
.github/workflows/ci.yml
+3
-31
3 additions, 31 deletions
.github/workflows/ci.yml
with
35 additions
and
33 deletions
.github/release-drafter.yml
0 → 100644
+
30
−
0
View file @
397e4a69
name-template
:
'
v$RESOLVED_VERSION
🌈'
tag-template
:
'
v$RESOLVED_VERSION'
categories
:
-
title
:
'
🚀
Features'
labels
:
-
'
feature'
-
'
enhancement'
-
title
:
'
🐛
Bug
Fixes'
labels
:
-
'
fix'
-
'
bugfix'
-
'
bug'
-
title
:
'
🧰
Maintenance'
label
:
'
chore'
change-template
:
'
-
$TITLE
@$AUTHOR
(#$NUMBER)'
version-resolver
:
major
:
labels
:
-
'
next-major-release'
minor
:
labels
:
-
'
next-minor-release'
patch
:
labels
:
-
'
patch'
default
:
minor
template
:
|
## Changes
$CHANGES
This diff is collapsed.
Click to expand it.
.github/workflows/ci-master.yml
+
2
−
2
View file @
397e4a69
...
...
@@ -18,7 +18,7 @@ jobs:
run
:
|
docker run --rm \
--volume="${{ github.workspace }}:/srv/jekyll" \
jekyll/builder:latest /bin/bash -c "gem install bundler && chmod -R 777 /srv/jekyll && jekyll build && bundle exec
just-the-docs
rake search:init"
jekyll/builder:latest /bin/bash -c "gem install bundler && chmod -R 777 /srv/jekyll &&
bundle install && bundle exec
jekyll build && bundle exec rake search:init"
jekyll-3-8-5
:
name
:
Build Jekyll site (v3.8.5)
runs-on
:
ubuntu-latest
...
...
@@ -30,7 +30,7 @@ jobs:
run
:
|
docker run --rm \
--volume="${{ github.workspace }}:/srv/jekyll" \
jekyll/builder:3.8.5 /bin/bash -c "gem install bundler && chmod -R 777 /srv/jekyll && jekyll build && bundle exec
just-the-docs
rake search:init"
jekyll/builder:3.8.5 /bin/bash -c "gem install bundler && chmod -R 777 /srv/jekyll &&
bundle install && bundle exec
jekyll build && bundle exec rake search:init"
assets
:
name
:
Format and test CSS and JS
runs-on
:
ubuntu-latest
...
...
This diff is collapsed.
Click to expand it.
.github/workflows/ci.yml
+
3
−
31
View file @
397e4a69
...
...
@@ -15,7 +15,7 @@ jobs:
run
:
|
docker run --rm \
--volume="${{ github.workspace }}:/srv/jekyll" \
jekyll/builder:latest /bin/bash -c "gem install bundler && chmod -R 777 /srv/jekyll && bundle install && jekyll build && bundle exec rake search:init"
jekyll/builder:latest /bin/bash -c "gem install bundler && chmod -R 777 /srv/jekyll && bundle install &&
bundle exec
jekyll build && bundle exec rake search:init"
jekyll-3-8-5
:
name
:
Build Jekyll site (v3.8.5)
...
...
@@ -28,45 +28,17 @@ jobs:
run
:
|
docker run --rm \
--volume="${{ github.workspace }}:/srv/jekyll" \
jekyll/builder:3.8.5 /bin/bash -c "gem install bundler && chmod -R 777 /srv/jekyll && bundle install && jekyll build && bundle exec rake search:init"
jekyll/builder:3.8.5 /bin/bash -c "gem install bundler && chmod -R 777 /srv/jekyll && bundle install &&
bundle exec
jekyll build && bundle exec rake search:init"
assets
:
name
:
Format and t
est CSS and JS
name
:
T
est CSS and JS
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@v2
# Using this so the this instead of GITHUB_TOKEN so that this workflow can trigger another
with
:
token
:
${{ secrets.PAT }}
-
name
:
Use Node.js 12.x
uses
:
actions/setup-node@v1
with
:
node-version
:
'
12.x'
-
name
:
Extract branch name
shell
:
bash
run
:
echo "##[set-output name=branch;]$(echo ${GITHUB_HEAD_REF#refs/heads/})"
id
:
extract_branch
-
run
:
npm install
-
run
:
npm run format
-
name
:
Add changed files
run
:
|
echo "https://$GITHUB_ACTOR:$GITHUB_TOKEN@github.com/$GITHUB_REPOSITORY.git"
git config --global user.email $GITHUB_ACTOR@users.noreply.github.com
git config --global user.name $GITHUB_ACTOR
echo "extracted branch is ${{ steps.extract_branch.outputs.branch }}"
git checkout -b ${{ steps.extract_branch.outputs.branch }}
git status
git add .
-
name
:
Are there any updates?
shell
:
bash
run
:
echo "##[set-output name=status]$(git status -s)"
id
:
is_dirty
-
name
:
Commit files
if
:
steps.is_dirty.outputs.status
run
:
|
echo ${{ steps.is_dirty.outputs.status }}
git commit -m "🎨 Prettier"
git push --force --set-upstream "https://${GITHUB_ACTOR}:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git" ${{ steps.extract_branch.outputs.branch }}
-
run
:
npm test
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment