mirror of
https://github.com/rlespinasse/github-slug-action.git
synced 2026-05-17 18:35:07 +00:00
style: add editorconfig file
This commit is contained in:
@@ -1,15 +1,15 @@
|
||||
#!/bin/sh -l
|
||||
|
||||
slug_ref() {
|
||||
echo "$1" \
|
||||
| tr "[:upper:]" "[:lower:]" \
|
||||
| sed -r 's#refs/[^\/]*/##;s/[~\^]+//g;s/[^a-zA-Z0-9]+/-/g;s/^-+\|-+$//g;s/^-*//;s/-*$//' \
|
||||
| cut -c1-63
|
||||
echo "$1" |
|
||||
tr "[:upper:]" "[:lower:]" |
|
||||
sed -r 's#refs/[^\/]*/##;s/[~\^]+//g;s/[^a-zA-Z0-9]+/-/g;s/^-+\|-+$//g;s/^-*//;s/-*$//' |
|
||||
cut -c1-63
|
||||
}
|
||||
|
||||
short_sha(){
|
||||
echo "$1" \
|
||||
| cut -c1-8
|
||||
short_sha() {
|
||||
echo "$1" |
|
||||
cut -c1-8
|
||||
}
|
||||
|
||||
echo ::set-env name=GITHUB_REF_SLUG::"$(slug_ref "$GITHUB_REF")"
|
||||
|
||||
Reference in New Issue
Block a user