Skip to content

Commit

Permalink
added docker and workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
vishalkumar-activelabs committed Dec 5, 2023
1 parent 0616117 commit 58c4f33
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Create Pull Request

on:
push:
branches:
- main

jobs:
create_pr:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
token: ${{ secrets.COMMIT_TOKEN }}

- name: Make changes
run: |
echo "Updated content" > file.txt # Replace with your file path
git config --global user.email "[email protected]"
git config --global user.name "vishalkumar-activelabs"
# git pull origin main
git add .
git commit -m "Update app.js"
git status
git push --set-upstream origin main-$GITHUB_SHA
27 changes: 27 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Create Pull Request

on:
push:
branches:
- main

jobs:
create_pr:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
token: ${{ secrets.COMMIT_TOKEN }}

- name: Make changes
run: |
echo "Updated content" > file.txt # Replace with your file path
git config --global user.email "[email protected]"
git config --global user.name "vishalkumar-activelabs"
# git pull origin main
git add .
git commit -m "Update app.js"
git status
git push --set-upstream origin main-$GITHUB_SHA

0 comments on commit 58c4f33

Please sign in to comment.