Skip to content

xryuseix/exifpr

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ExifPR

PRが作成されたタイミングで指定した拡張子のファイルのExif情報を取得し、PRのコメントに記載するGitHub Actionsです。

How to use

  1. レポジトリのSettings > Actions > General > Workflow permissionsの設定を「Read and write permissions」に変更してください。 image
  2. 以下のようにGitHub Actionsの設定ファイルを作成してください。
name: ExifPR

on:
  pull_request:
    types: [opened]

jobs:
  exifpr:
    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v4
    - name: ExifPR
      uses: xryuseix/[email protected]
      with:
        target_ext: .png .jpeg .jpg .gif .bmp .pdf .mp4 .mp3 .wav
        repository: ${{ github.repository }}
        pr_number: ${{ github.event.pull_request.number }}
      env:
        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  1. Pull Requestを作成してください。