Skip to content

Commit

Permalink
Merge pull request #6 from masarakki/init-actions
Browse files Browse the repository at this point in the history
init-actions
  • Loading branch information
masarakki authored Jun 28, 2024
2 parents 4bf3d61 + c07583d commit eef4a9f
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 eef4a9f

Please sign in to comment.