This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Handle Issues | |
| on: | |
| issues: | |
| types: [opened] | |
| jobs: | |
| create-branch-and-pr: | |
| runs-on: ubuntu-latest | |
| steps: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # clone https://github.com/lohanidamodar/gitpod-dotfiles.git to ~/.dotfiles | |
| # then run the ~/.dotfiles/setup.sh script | |
| if [ -d "${HOME}/.dotfiles" ]; then | |
| echo "Dotfiles directory already exists at ${HOME}/.dotfiles" | |
| echo "Updating existing dotfiles..." | |
| cd "${HOME}/.dotfiles" || exit 1 | |
| git pull origin main |
OlderNewer