Skip to content

Commit

Permalink
Add an empty GitHub Action workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dmikurube committed Jul 1, 2024
1 parent 68f5cda commit 7ea4819
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
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"
21 changes: 21 additions & 0 deletions .github/workflows/input-postgresql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Input with PostgreSQL
on:
pull_request:
push:
schedule:
- cron: "0 18 * * *" # 3am in Asia/Tokyo
jobs:
check:
runs-on: ubuntu-latest
# push: always run.
# pull_request: run only when the PR is submitted from a forked repository, not within this repository.
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Set up OpenJDK 8
uses: actions/setup-java@v4
with:
java-version: 8
distribution: "temurin"

0 comments on commit 7ea4819

Please sign in to comment.