mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
No one reads the detached head advice
This commit is contained in:
parent
f6acbf7679
commit
923e02a6a1
5 changed files with 13 additions and 0 deletions
3
.github/workflows/macos.yml
vendored
3
.github/workflows/macos.yml
vendored
|
@ -15,6 +15,9 @@ jobs:
|
|||
run: |
|
||||
sudo /usr/libexec/ApplicationFirewall/socketfilterfw --setglobalstate off
|
||||
sudo /usr/libexec/ApplicationFirewall/socketfilterfw --getglobalstate
|
||||
- name: git config
|
||||
run: |
|
||||
git config --global advice.detachedHead 0
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
path: src
|
||||
|
|
1
.github/workflows/mingw.yml
vendored
1
.github/workflows/mingw.yml
vendored
|
@ -28,6 +28,7 @@ jobs:
|
|||
run: |
|
||||
git config --system core.autocrlf false
|
||||
git config --system core.eol lf
|
||||
git config --system advice.detachedHead 0
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
path: src
|
||||
|
|
3
.github/workflows/mjit.yml
vendored
3
.github/workflows/mjit.yml
vendored
|
@ -19,6 +19,9 @@ jobs:
|
|||
set -x
|
||||
sudo apt-get update -q || :
|
||||
sudo apt-get install --no-install-recommends -q -y build-essential libssl-dev libyaml-dev libreadline6-dev zlib1g-dev libncurses5-dev libffi-dev libgdbm-dev bison autoconf ruby
|
||||
- name: git config
|
||||
run: |
|
||||
git config --global advice.detachedHead 0
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
path: src
|
||||
|
|
3
.github/workflows/ubuntu.yml
vendored
3
.github/workflows/ubuntu.yml
vendored
|
@ -33,6 +33,9 @@ jobs:
|
|||
set -x
|
||||
sudo apt-get update -q || :
|
||||
sudo apt-get install --no-install-recommends -q -y build-essential libssl-dev libyaml-dev libreadline6-dev zlib1g-dev libncurses5-dev libffi-dev libgdbm-dev bison autoconf ruby
|
||||
- name: git config
|
||||
run: |
|
||||
git config --global advice.detachedHead 0
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
path: src
|
||||
|
|
3
.github/workflows/windows.yml
vendored
3
.github/workflows/windows.yml
vendored
|
@ -33,6 +33,9 @@ jobs:
|
|||
- name: Install libraries with chocolatey
|
||||
run: |
|
||||
choco install --no-progress openssl winflexbison3
|
||||
- name: git config
|
||||
run: |
|
||||
git config --system advice.detachedHead 0
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
path: src
|
||||
|
|
Loading…
Reference in a new issue