Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/create-pr/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

set -eou pipefail
# set -eou pipefail

# Create Pull Request (by default on current branch)
gh pr create \
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/gen-install-scripts/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

set -eou pipefail

Expand Down
2 changes: 1 addition & 1 deletion .github/actions/int-test/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
set -eou pipefail
#set -eou pipefail

export ATLAS_ORG_ID="${INPUT_ATLAS_ORG_ID}"
export ATLAS_PUBLIC_KEY="${INPUT_ATLAS_PUBLIC_KEY}"
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/push-files/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh
#!/bin/bash

set -eou pipefail
#set -eou pipefail

#commit file to the destination branch

Expand Down
4 changes: 2 additions & 2 deletions .github/actions/set-tag/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/bin/sh

set -eou pipefail
#set -eou pipefail

# Setup tag name
commit_id=$(git rev-parse --short HEAD)
branch_name=$GITHUB_HEAD_REF
branch_name=${GITHUB_HEAD_REF-}
if [ -z "${branch_name}" ]; then
branch_name=$(echo "$GITHUB_REF" | awk -F'/' '{print $3}')
fi
Expand Down