Skip to content

Updated gitignore

Updated gitignore #172

Workflow file for this run

name: Git Workflow Pipeline
on:
push:
branches:
- develop
# - master
- AWS202405
jobs:
push-to-branches:
runs-on: ubuntu-latest
steps:
- name: Configure git_config
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Actions"
- name: Checkout Repository
uses: actions/checkout@master
# - name: Merge Current -> master
# uses: devmasx/merge-branch@master
# with:
# type: now
# target_branch: master
# github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Merge Current -> AWS202405
uses: devmasx/merge-branch@master
with:
type: now
target_branch: AWS202405
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Merge Current -> develop
uses: devmasx/merge-branch@master
with:
type: now
target_branch: develop
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Merge Current -> devopstesting
uses: devmasx/merge-branch@master

Check failure on line 47 in .github/workflows/gitworkflow.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/gitworkflow.yml

Invalid workflow file

You have an error in your yaml syntax on line 47
with:
type: now
target_branch: devopstesting
github_token: ${{ secrets.GITHUB_TOKEN }}
# - name: Configure AWS credentials
# uses: aws-actions/configure-aws-credentials@v1
# with:
# aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
# aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
# aws-region: eu-west-3
# - name: Create Secrets
# uses: 1arp/[email protected]
# with:
# path: 'src/main/resources'
# is AbsolutePath: false
# file: 'application-secret.properties'
# content: |
# riot.api.key=${{ secrets.RIOT_API_KEY }}
# disc.api.key=${{ secrets.DISCORD_API_KEY }}
# - name: Set up JDK 17
# uses: actions/setup-java@v3
# with:
# java-version: '17'
# distribution: 'adopt'
# cache: maven
# - name: Build with Maven
# run: mvn clean package -DskipTests