Skip to content

Commit 1cfe564

Browse files
authored
Merge pull request #98 from launchdarkly-labs/update_all_envs
Update all Demo Envs
2 parents d17946f + 34ce702 commit 1cfe564

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

Diff for: .github/workflows/update_all_user_environments.yaml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Update All User Environments
2+
3+
on:
4+
pull_request:
5+
branches: [update_all_envs]
6+
7+
8+
jobs:
9+
update-demo-environments:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout repository
13+
uses: actions/checkout@v2
14+
15+
- name: Get all branches and loop through them
16+
run: |
17+
git fetch --all
18+
for branch in $(git branch -r | grep -v '\->'); do
19+
branch=${branch#origin/}
20+
echo "Processing branch: $branch"
21+
# Add commands to process each branch as needed
22+
done

0 commit comments

Comments
 (0)