Skip to content

Commit

Permalink
add workflow (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
kulapard authored Mar 8, 2024
1 parent 55b9ec5 commit cedab5d
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @anna-money/cx-backend
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: 2

updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: daily
27 changes: 27 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Pull requests

on:
pull_request:
branches: [ master ]
pull_request_target:
branches: [ master ]

concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true

jobs:
test:
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha || github.sha }}
- name: Run local action
uses: ./
id: bump
with:
timezone: "Europe/London"
search_key: "Test comment"
text: Test comment

0 comments on commit cedab5d

Please sign in to comment.