Compare commits
50 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
030cc2b97d | ||
|
|
178d291e4d | ||
|
|
8e58b6290c | ||
|
|
831ab5452e | ||
|
|
d3e906333b | ||
|
|
02ebb22b5a | ||
|
|
a05c54d862 | ||
|
|
adbb090758 | ||
|
|
bde82421b1 | ||
|
|
58cb94d8d4 | ||
|
|
703de123ea | ||
|
|
b1a34c5b71 | ||
|
|
ad6f741613 | ||
|
|
abd52ae85f | ||
|
|
9f2549569f | ||
|
|
08ef161dcd | ||
|
|
217783cbeb | ||
|
|
81b25a482c | ||
|
|
7218563dcc | ||
|
|
3f0dc2af7d | ||
|
|
ad66f55ffd | ||
|
|
fd89c050b1 | ||
|
|
30f525889f | ||
|
|
32fad6292a | ||
|
|
51293fc950 | ||
|
|
105c7b63b8 | ||
|
|
cd84774afe | ||
|
|
5cfaa219dc | ||
|
|
e03daf890f | ||
|
|
661be6f0a8 | ||
|
|
995b6b0321 | ||
|
|
049d17ca06 | ||
|
|
66d2350520 | ||
|
|
3a78eca719 | ||
|
|
7b2e621012 | ||
|
|
245488cec8 | ||
|
|
6c025bf199 | ||
|
|
0162a94483 | ||
|
|
de91d72e3d | ||
|
|
deca7afc45 | ||
|
|
816e1398fa | ||
|
|
92a70bacf6 | ||
|
|
e4b96f96cd | ||
|
|
34546ec054 | ||
|
|
249f1d8280 | ||
|
|
39fa9a1fc3 | ||
|
|
0b560de388 | ||
|
|
c084c9c0ab | ||
|
|
be3fe5d27f | ||
|
|
c7e2a7869d |
50
.github/workflows/exp.yml
vendored
Normal file
50
.github/workflows/exp.yml
vendored
Normal file
@@ -0,0 +1,50 @@
|
||||
|
||||
name: Experiment
|
||||
on: push
|
||||
|
||||
jobs:
|
||||
|
||||
experiment:
|
||||
name: Experiment
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Experiment
|
||||
uses: zpqrtbnk/gh-actions/experiment@master
|
||||
|
||||
- name: Infos
|
||||
shell: bash
|
||||
run: |
|
||||
echo "github.ref: '${{ github.ref }}'"
|
||||
echo "github.sha: '${{ github.sha }}'"
|
||||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Report
|
||||
shell: bash
|
||||
run: |
|
||||
git log --graph --pretty=format':%h%%d %s %an, %ar' | head -n 5
|
||||
if [ "${{ github.ref }}#refs/heads/" != "${{ github.ref }}" ]; then
|
||||
# a commit, not a tag
|
||||
echo "COMMIT"
|
||||
BRANCH="${{ github.ref }}#refs/heads/"
|
||||
git fetch origin wip-$BRANCH:wip-$BRANCH
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "TAG NOT FOUND"
|
||||
else
|
||||
TAGSHA=$(git rev-parse wip-$BRANCH)
|
||||
echo "FOUND TAG $TAGSHA"
|
||||
if [ "$TAGSHA" != "${{ github.sha }}" ]; then
|
||||
echo "BAD TAG"
|
||||
else
|
||||
echo "GOOD TAG"
|
||||
fi
|
||||
fi
|
||||
else
|
||||
# a tag?
|
||||
echo "TAG"
|
||||
fi
|
||||
4
rigolo.txt
Normal file
4
rigolo.txt
Normal file
@@ -0,0 +1,4 @@
|
||||
premier
|
||||
|
||||
deuxieme
|
||||
|
||||
0
second.txt
Normal file
0
second.txt
Normal file
0
treize.txt
Normal file
0
treize.txt
Normal file
3
trente.txt
Normal file
3
trente.txt
Normal file
@@ -0,0 +1,3 @@
|
||||
premiers
|
||||
|
||||
deuxiemes
|
||||
Reference in New Issue
Block a user