Skip to content

Commit

Permalink
Start testing GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
natocesarrego committed Feb 8, 2024
1 parent 7d2acf9 commit b59b258
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/release-tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
on:
push:
branches:
- 'fake-master'
jobs:
blockers-tracker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: ./.github/workflows/test-script.sh LPD-16
18 changes: 18 additions & 0 deletions .github/workflows/test-script.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/bin/bash

# Get list of blockers from Jira



# Check if all blockers were indeed merged

GIT_LOG_GREP_RESULT=$(git log --grep=$1" ")

if [ -z "$GIT_LOG_GREP_RESULT" ] ; then
echo "No results for git log --grep"

exit
fi

# Notify Release Team, ideally, through a specific Slack channel

0 comments on commit b59b258

Please sign in to comment.