Skip to content

Commit

Permalink
init-actions
Browse files Browse the repository at this point in the history
  • Loading branch information
masarakki committed Jun 28, 2024
1 parent 25fa726 commit c07583d
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: build
on:
pull_request:
branches: "**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
13 changes: 13 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: deploy
on:
pull_request_target:
types: closed
permissions:
id-token: write
contents: read
jobs:
deploy:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

0 comments on commit c07583d

Please sign in to comment.