Actually fix templates to be jinja2
This commit is contained in:
parent
b50688221e
commit
dea24de888
2 changed files with 16 additions and 16 deletions
|
@ -1,6 +1,6 @@
|
|||
config = dict(
|
||||
fas_credentials=dict(
|
||||
username="fedoradummy",
|
||||
password="<%= fedoraDummyUserPassword %>",
|
||||
password="{{ fedoraDummyUserPassword }}",
|
||||
),
|
||||
)
|
||||
|
|
|
@ -6,11 +6,11 @@ config = dict(
|
|||
make_pretty=True,
|
||||
make_terse=True,
|
||||
|
||||
<% if environment == 'staging' %>
|
||||
{% if environment == 'staging' %}
|
||||
nickname='fedmsg-stg',
|
||||
<% else %>
|
||||
{% else %}
|
||||
nickname='fedmsg-bot',
|
||||
<% end %>
|
||||
{% endif %}
|
||||
channel='fedora-fedmsg',
|
||||
|
||||
# Ignore some of the koji spamminess
|
||||
|
@ -32,11 +32,11 @@ config = dict(
|
|||
make_pretty=True,
|
||||
make_terse=True,
|
||||
|
||||
<% if environment == 'staging' %>
|
||||
{% if environment == 'staging' %}
|
||||
nickname='fedmsg-ask-stg',
|
||||
<% else %>
|
||||
{% else %}
|
||||
nickname='fedmsg-ask',
|
||||
<% end %>
|
||||
{% endif %}
|
||||
channel='fedora-ask',
|
||||
# Only show AskFedora messages
|
||||
filters=dict(
|
||||
|
@ -51,11 +51,11 @@ config = dict(
|
|||
make_pretty=True,
|
||||
make_terse=True,
|
||||
|
||||
<% if environment == 'staging' %>
|
||||
{% if environment == 'staging' %}
|
||||
nickname='fedmsg-releng-s',
|
||||
<% else %>
|
||||
{% else %}
|
||||
nickname='fedmsg-releng',
|
||||
<% end %>
|
||||
{% endif %}
|
||||
channel='fedora-releng',
|
||||
filters=dict(
|
||||
topic=[
|
||||
|
@ -74,11 +74,11 @@ config = dict(
|
|||
make_pretty=True,
|
||||
make_terse=True,
|
||||
|
||||
<% if environment == 'staging' %>
|
||||
{% if environment == 'staging' %}
|
||||
nickname='fedmsg-pfi-stg',
|
||||
<% else %>
|
||||
{% else %}
|
||||
nickname='fedmsg-pfi',
|
||||
<% end %>
|
||||
{% endif %}
|
||||
channel='#proyecto-fedora',
|
||||
# If the word proyecto appears in any message, forward it.
|
||||
filters=dict(
|
||||
|
@ -93,11 +93,11 @@ config = dict(
|
|||
make_pretty=True,
|
||||
make_terse=True,
|
||||
|
||||
<% if environment == 'staging' %>
|
||||
{% if environment == 'staging' %}
|
||||
nickname='fedmsg-latam-stg',
|
||||
<% else %>
|
||||
{% else %}
|
||||
nickname='fedmsg-latam',
|
||||
<% end %>
|
||||
{% endif %}
|
||||
channel='#fedora-latam',
|
||||
# If the word fedora-latam appears in any message, forward it.
|
||||
filters=dict(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue