Skip to content

Commit 0f68482

Browse files
author
Richard Cunningham
committed
ID change
1 parent a7da5b0 commit 0f68482

File tree

4 files changed

+23
-25
lines changed

4 files changed

+23
-25
lines changed

.github/workflows/release.yaml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -23,25 +23,25 @@ jobs:
2323
env:
2424
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2525

26-
- name: Create PR for Documentation
27-
id: push_image_info
28-
env:
29-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30-
run: |
31-
set -e
32-
echo "Start."
33-
# Configure git and Push updates
34-
git config --global user.email github-actions[bot]@users.noreply.github.com
35-
git config --global user.name github-actions[bot]
36-
git config pull.rebase false
37-
branch=automated-documentation-update-$GITHUB_RUN_ID
38-
git checkout -b $branch
39-
message='Automated documentation update'
40-
# Add / update and commit
41-
git add */**/README.md
42-
git commit -m 'Automated documentation update [skip ci]' || export NO_UPDATES=true
43-
# Push
44-
if [ "$NO_UPDATES" != "true" ] ; then
45-
git push origin "$branch"
46-
gh pr create --title "$message" --body "$message"
47-
fi
26+
# - name: Create PR for Documentation
27+
# id: push_image_info
28+
# env:
29+
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30+
# run: |
31+
# set -e
32+
# echo "Start."
33+
# # Configure git and Push updates
34+
# git config --global user.email github-actions[bot]@users.noreply.github.com
35+
# git config --global user.name github-actions[bot]
36+
# git config pull.rebase false
37+
# branch=automated-documentation-update-$GITHUB_RUN_ID
38+
# git checkout -b $branch
39+
# message='Automated documentation update'
40+
# # Add / update and commit
41+
# git add */**/README.md
42+
# git commit -m 'Automated documentation update [skip ci]' || export NO_UPDATES=true
43+
# # Push
44+
# if [ "$NO_UPDATES" != "true" ] ; then
45+
# git push origin "$branch"
46+
# gh pr create --title "$message" --body "$message"
47+
# fi

.github/workflows/test.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ jobs:
1717
baseImage:
1818
- debian:latest
1919
- ubuntu:latest
20-
- mcr.microsoft.com/devcontainers/base:ubuntu
2120
steps:
2221
- uses: actions/checkout@v4
2322

.github/workflows/validate.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
name: "Validate devcontainer-feature.json files"
22
on:
3-
workflow_dispatch:
43
pull_request:
54

65
jobs:

src/terminal-history/devcontainer-feature.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "BASH terminal auto history configuration",
3-
"id": "BASH",
3+
"id": "shared-bash-config",
44
"version": "1.0.0",
55
"containerEnv": {
66
"CONFIG_FOLDER": "/devcontainer_rc",

0 commit comments

Comments
 (0)