Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 812 Bytes

README.md

File metadata and controls

37 lines (29 loc) · 812 Bytes

Reddit wiki Push action

This action will push the contents of your repo onto a reddit wiki

Inputs

who-to-greet

Required The name of the person to greet. Default "World".

Example usage

name: upload to reddit

on:
  push:
    branches:
      - 'master'

jobs:
  docker:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout code
        uses: actions/[email protected]
        with:
          fetch-depth: 0
      - name: push
        uses: redlukas/[email protected]
        with:
          sub_name: 'wifi'
          reddit_client_id: ${{ secrets.REDDIT_CLIENT_ID }}
          reddit_client_secret: ${{ secrets.REDDIT_CLIENT_SECRET }}
          reddit_user_name: ${{ secrets.REDDIT_USER_NAME }}
          reddit_user_password: ${{ secrets.REDDIT_USER_PASSWORD }}