@actionsflow/trigger-aws_sns 中文文档教程

发布于 3年前 浏览 10 项目主页 更新于 3年前

@actionsflow/trigger-aws_sns

这是 Actionsflow< 的 aws sns 触发器/a>。 发布到您创建的 SNS 主题的任何消息都由此触发器触发。

这是一个官方触发器,您不需要手动安装它。

在 Github 上查看触发器

Prerequisites

你应该 在 AWS 控制台为某些主题创建 HTTPS 订阅,并设置 https://webhook.actionsflow.workers.dev ////aws_sns?__token= as your endpoint

Usage

on:
  aws_sns:

Options

没有什么可以指定的。 您可以使用Actionsflow 触发器的常规配置 进行更多自定义。

Outputs

此触发器的输出将是 aws sns 消息正文的正文,您可以看到它 此处

一个输出示例:

{
  "Type": "SubscriptionConfirmation",
  "MessageId": "165545c9-2a5c-472c-8df2-7ff2be2b3b1b",
  "Token": "2336412f37...",
  "TopicArn": "arn:aws:sns:us-west-2:123456789012:MyTopic",
  "Message": "You have chosen to subscribe to the topic arn:aws:sns:us-west-2:123456789012:MyTopic.\nTo confirm the subscription, visit the SubscribeURL included in this message.",
  "SubscribeURL": "https://sns.us-west-2.amazonaws.com/?Action=ConfirmSubscription&TopicArn=arn:aws:sns:us-west-2:123456789012:MyTopic&Token=2336412f37...",
  "Timestamp": "2012-04-26T20:45:04.751Z",
  "SignatureVersion": "1",
  "Signature": "EXAMPLEpH+DcEwjAPg8O9mY8dReBSwksfg2S7WKQcikcNKWLQjwu6A4VbeS0QHVCkhRS7fUQvi2egU3N858fiTDN6bkkOxYDVrY0Ad8L10Hs3zH81mtnPk5uvvolIC1CXGu43obcgFxeL3khZl8IKvO61GWB6jI9b5+gLPoBc1Q=",
  "SigningCertURL": "https://sns.us-west-2.amazonaws.com/SimpleNotificationService-f3ecfb7224c7233fe7bb5f59f96de52f.pem"
}

您可以像这样使用输出:

on:
  aws_sns:
jobs:
  print:
    name: Print
    runs-on: ubuntu-latest
    steps:
      - name: Print Outputs
        env:
          Message: ${{ on.aws_sns.outputs.Message }}
        run: |
          echo Message: $Message

@actionsflow/trigger-aws_sns

This is an aws sns trigger of Actionsflow. Any messages published to the SNS topic you created are triggered by this trigger.

This is an official trigger, you don't need to install it manually.

View trigger on Github

Prerequisites

You should Create HTTPS subscription for some Topic at AWS console, and set https://webhook.actionsflow.workers.dev/<owner>/<repo>/<workflow-file-name>/aws_sns?__token=<your-github-personal-token> as your endpoint

Usage

on:
  aws_sns:

Options

There is nothing can be specified. You can use General Config for Actionsflow Trigger for more customization.

Outputs

This trigger's outputs will be the body of the aws sns message body, you can see it here

An outputs example:

{
  "Type": "SubscriptionConfirmation",
  "MessageId": "165545c9-2a5c-472c-8df2-7ff2be2b3b1b",
  "Token": "2336412f37...",
  "TopicArn": "arn:aws:sns:us-west-2:123456789012:MyTopic",
  "Message": "You have chosen to subscribe to the topic arn:aws:sns:us-west-2:123456789012:MyTopic.\nTo confirm the subscription, visit the SubscribeURL included in this message.",
  "SubscribeURL": "https://sns.us-west-2.amazonaws.com/?Action=ConfirmSubscription&TopicArn=arn:aws:sns:us-west-2:123456789012:MyTopic&Token=2336412f37...",
  "Timestamp": "2012-04-26T20:45:04.751Z",
  "SignatureVersion": "1",
  "Signature": "EXAMPLEpH+DcEwjAPg8O9mY8dReBSwksfg2S7WKQcikcNKWLQjwu6A4VbeS0QHVCkhRS7fUQvi2egU3N858fiTDN6bkkOxYDVrY0Ad8L10Hs3zH81mtnPk5uvvolIC1CXGu43obcgFxeL3khZl8IKvO61GWB6jI9b5+gLPoBc1Q=",
  "SigningCertURL": "https://sns.us-west-2.amazonaws.com/SimpleNotificationService-f3ecfb7224c7233fe7bb5f59f96de52f.pem"
}

You can use the outputs like this:

on:
  aws_sns:
jobs:
  print:
    name: Print
    runs-on: ubuntu-latest
    steps:
      - name: Print Outputs
        env:
          Message: ${{ on.aws_sns.outputs.Message }}
        run: |
          echo Message: $Message
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文