Skip to content

Commit 36d0044

Browse files
committed
gh-pages-squash: Transition from TravisCI to GitHub action
* Simplify and generalize script "gh-pages-squash.sh" to support only squash mode. * Add GitHub actions workflow triggering execution of the gh-pages-squash.sh script * Rename trigger-travis-squash.sh to trigger-workflow-squash.sh and update to use GitHub API.
1 parent 16bd2b8 commit 36d0044

6 files changed

+70
-89
lines changed

.github/workflows/gh-pages-squash.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Squash gh-pages branch
2+
3+
on:
4+
schedule:
5+
# Every tuesday at 11.30am UTC (7.30am ET)
6+
- cron: "30 11 * * 2"
7+
workflow_dispatch:
8+
9+
jobs:
10+
gh-pages-reset:
11+
name: Squash gh-pages branch
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v3
15+
16+
- name: Squash gh-pages branch
17+
run: |
18+
./gh-pages-squash.sh
19+
env:
20+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.travis.yml

-5
This file was deleted.

README.md

+6-19
Original file line numberDiff line numberDiff line change
@@ -18,43 +18,30 @@ The simple GitHub post-receive web hook handler triggering a CircleCI build is
1818
[github-circleci-trigger](https://github.com/Slicer/github-circleci-trigger). It is implemented as
1919
a Flask application hosted on a free heroku instance.
2020

21-
## Squash of `gh-pages` branch using TravisCI Cron Job
21+
## Squash of `gh-pages` branch using a scheduled GitHub Actions worklfow
2222

2323
After some time, the amount of data published on the `gh-pages` exceeds GitHub [recommended size of 1GB][max_size].
24-
To cleanup the repository, a [TravisCI Cron Job][cronjob] associated with this project
24+
To cleanup the repository, a [scheduled workflow][schedule] associated with this project
2525
will be triggered weekly and will execute [gh-pages-squash.sh](./gh-pages-squash.sh) script.
2626

2727
The script simply do a soft reset, amend the first commit and force push the branch `gh-pages`.
2828

29-
Last TravisCI Cron Job: [![Build Status][travis_img]][travis]
30-
3129
[max_size]: https://help.github.com/articles/what-is-my-disk-quota/
32-
[cronjob]: https://docs.travis-ci.com/user/cron-jobs/
33-
[travis]: https://travis-ci.org/Slicer/apidocs.slicer.org
34-
[travis_img]: https://travis-ci.org/Slicer/apidocs.slicer.org.svg?branch=main
30+
[schedule]: https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule
3531

3632

37-
## Programmatically request updates of `gh-pages` branch using TravisCI API
33+
## Programmatically request updates of `gh-pages` branch using GitHub API
3834

3935
### Prequisites
4036

41-
* Install Travis client
42-
43-
```
44-
# Install travis client
45-
curl https://raw.githubusercontent.com/jcfr/docker-travis-cli/master/travis-cli.sh \
46-
-o ~/bin/travis-cli && \
47-
chmod +x ~/bin/travis-cli
48-
```
49-
5037
* Generate GitHub token - See [here](https://github.com/settings/tokens)
5138

5239
### Squash *gh-pages*
5340

54-
*This is useful to debug the TravisCI Cron Jobs without having to wait.*
41+
*This is useful to debug the workflow without having to wait.*
5542

5643
```
57-
GITHUB_TOKEN=<YOUR_GITHUB_TOKEN> ./trigger-travis-squash.sh squash
44+
GITHUB_TOKEN=<YOUR_GITHUB_TOKEN> ./trigger-workflow-squash.sh
5845
```
5946

6047
# license

gh-pages-squash.sh

+5-11
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,16 @@ set -e
44
set -o pipefail
55
set -x
66

7-
UPDATE_MODE=$TRAVIS_EVENT_TYPE
7+
UPDATE_MODE=${UPDATE_MODE:-squash}
88

99
SCRIPT_NAME=$(basename $0)
1010

11-
case $TRAVIS_EVENT_TYPE in
12-
cron)
13-
UPDATE_MODE="squash"
14-
WHO="Travis Cron job"
15-
echo "$SCRIPT_NAME: executed from $WHO [UPDATE_MODE defaults to $UPDATE_MODE]"
16-
;;
11+
case $UPDATE_MODE in
1712
squash)
18-
WHO="Travis API"
19-
echo "$SCRIPT_NAME: executed from $WHO [UPDATE_MODE=$UPDATE_MODE]"
13+
echo "$SCRIPT_NAME: executed with [UPDATE_MODE=$UPDATE_MODE]"
2014
;;
2115
*)
22-
echo "$SCRIPT_NAME: skipping because invalid TRAVIS_EVENT_TYPE value. Accepted values are 'cron' or 'squash'"
16+
echo "$SCRIPT_NAME: skipping because invalid UPDATE_MODE value. Accepted values are 'squash'"
2317
exit 1
2418
;;
2519
esac
@@ -44,7 +38,7 @@ if [[ $UPDATE_MODE == "squash" ]]; then
4438
git checkout -b $TARGET_BRANCH FETCH_HEAD
4539
first_commit=$(git rev-list --max-parents=0 HEAD)
4640
git reset --soft $first_commit
47-
git commit --amend -m "Slicer apidocs squashed by $WHO
41+
git commit --amend -m "Slicer apidocs squashed
4842
4943
It was automatically generated by the script ``$SCRIPT_NAME`` [1]
5044

trigger-travis-squash.sh

-54
This file was deleted.

trigger-workflow-squash.sh

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
#!/usr/bin/env bash
2+
3+
set -e
4+
set -o pipefail
5+
6+
SCRIPT_NAME=$(basename $0)
7+
UPDATE_MODE=${1:-squash}
8+
9+
usage() {
10+
echo ""
11+
echo "Usage: $0 [squash]"
12+
echo ""
13+
}
14+
15+
# Sanity checks
16+
if [[ -z $GITHUB_TOKEN ]]; then
17+
echo "$SCRIPT_NAME: skipping because GITHUB_TOKEN env. variable is not set"
18+
exit 1
19+
fi
20+
21+
case $UPDATE_MODE in
22+
squash)
23+
;;
24+
*)
25+
echo "$SCRIPT_NAME: invalid parameters"
26+
usage
27+
exit 1
28+
;;
29+
esac
30+
31+
GITHUB_REPO="Slicer/apidocs.slicer.org"
32+
GITHUB_WORKFLOW_ID="gh-pages-squash.yml"
33+
34+
curl \
35+
-X POST \
36+
-H "Accept: application/vnd.github+json" \
37+
-H "Authorization: token ${GITHUB_TOKEN}" \
38+
"https://api.github.com/repos/${GITHUB_REPO}/actions/workflows/${GITHUB_WORKFLOW_ID}/dispatches" \
39+
-d '{"ref":"main"}'

0 commit comments

Comments
 (0)