appleboy / facebook-action

GitHub Action that sends a Facebook message.

Home Page:https://github.com/marketplace/actions/facebook-message-notify

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

🚀 Facebook Notify for GitHub Actions

GitHub Action for sending a Facebook notification message.

facebook-message

Actions Status

Usage

Send custom message and see the custom variable as blow.

name: facebook message
on: [push]
jobs:

  build:
    name: Build
    runs-on: ubuntu-latest
    steps:

    - name: send custom message
      uses: appleboy/facebook-action@master
      with:
        fb_page_token: ${{ secrets.FB_PAGE_TOKEN }}
        fb_verify_token: ${{ secrets.FB_VERIFY_TOKEN }}
        to: ${{ secrets.FB_TO }}
        args: The ${{ github.event_name }} event triggered first step.

Remove args to send the default message.

- name: send default message
  uses: appleboy/facebook-action@master
  with:
    fb_page_token: ${{ secrets.FB_PAGE_TOKEN }}
    fb_verify_token: ${{ secrets.FB_VERIFY_TOKEN }}
    to: ${{ secrets.FB_TO }}

facebook-workflow

Input variables

Getting started with Facebook Message Platform.

  • fb_page_token: Token is the access token of the Facebook page to send messages from..
  • fb_verify_token: The token used to verify facebook.
  • to: Recipient is who the message was sent to (required).
  • app_secret: The app secret from the facebook developer portal.
  • verify: verifying webhooks on the Facebook Developer Portal.
  • images - Optional. photo message
  • audios - Optional. audio message
  • videos - Optional. video message
  • files - Optional. file message

Example

- name: send gopher image message
  uses: appleboy/facebook-action@master
  with:
    fb_page_token: ${{ secrets.FB_PAGE_TOKEN }}
    fb_verify_token: ${{ secrets.FB_VERIFY_TOKEN }}
    to: ${{ secrets.FB_TO }}
    message: send photo message
    images: "https://golang.org/doc/gopher/gophercolor.png"

Template variable

Github Variable facebook Template Variable
GITHUB_REPOSITORY repo
GITHUB_ACTOR repo.namespace
GITHUB_SHA commit.sha
GITHUB_REF commit.ref
GITHUB_WORKFLOW github.workflow
GITHUB_ACTION github.action
GITHUB_EVENT_NAME github.event.name
GITHUB_EVENT_PATH github.event.path
GITHUB_WORKSPACE github.workspace

About

GitHub Action that sends a Facebook message.

https://github.com/marketplace/actions/facebook-message-notify

License:MIT License


Languages

Language:Dockerfile 58.1%Language:Shell 41.9%